Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom-dependency-tree.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ai.elimu:webapp:war:2.6.148-SNAPSHOT
ai.elimu:webapp:war:2.6.149-SNAPSHOT
+- ai.elimu:model:jar:model-2.0.128:compile
| \- com.google.code.gson:gson:jar:2.13.1:compile
| \- com.google.errorprone:error_prone_annotations:jar:2.38.0:compile
Expand Down
4 changes: 3 additions & 1 deletion src/main/webapp/WEB-INF/jsp/content/emoji/edit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@
<button id="submitButton" class="btn-large waves-effect waves-light" type="submit" <c:if test="${empty contributor}">disabled</c:if>>
Edit <i class="material-icons right">send</i>
</button>
<a href="<spring:url value='/content/emoji/delete/${emoji.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
<c:if test="${not empty contributor}">
<a href="<spring:url value='/content/emoji/delete/${emoji.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
</c:if>
</form:form>
</div>

Expand Down
4 changes: 3 additions & 1 deletion src/main/webapp/WEB-INF/jsp/content/letter/edit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
<button id="submitButton" class="btn-large waves-effect waves-light" type="submit" <c:if test="${empty contributor}">disabled</c:if>>
Edit <i class="material-icons right">send</i>
</button>
<a href="<spring:url value='/content/letter/delete/${letter.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
<c:if test="${not empty contributor}">
<a href="<spring:url value='/content/letter/delete/${letter.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
</c:if>
</form:form>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@
<button id="submitButton" class="btn-large waves-effect waves-light" type="submit" <c:if test="${empty contributor}">disabled</c:if>>
Edit <i class="material-icons right">send</i>
</button>
<a href="<spring:url value='/content/multimedia/image/delete/${image.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
<c:if test="${not empty contributor}">
<a href="<spring:url value='/content/multimedia/image/delete/${image.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
</c:if>
</form:form>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@
<button id="submitButton" class="btn-large waves-effect waves-light" type="submit" <c:if test="${empty contributor}">disabled</c:if>>
Edit <i class="material-icons right">send</i>
</button>
<a href="<spring:url value='/content/multimedia/video/delete/${video.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
<c:if test="${not empty contributor}">
<a href="<spring:url value='/content/multimedia/video/delete/${video.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
</c:if>
</form:form>
</div>
</content:section>
Expand Down
4 changes: 3 additions & 1 deletion src/main/webapp/WEB-INF/jsp/content/number/edit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@
<button id="submitButton" class="btn-large waves-effect waves-light" type="submit" <c:if test="${empty contributor}">disabled</c:if>>
Edit <i class="material-icons right">send</i>
</button>
<a href="<spring:url value='/content/number/delete/${number.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
<c:if test="${not empty contributor}">
<a href="<spring:url value='/content/number/delete/${number.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
</c:if>
</form:form>
</div>

Expand Down
4 changes: 3 additions & 1 deletion src/main/webapp/WEB-INF/jsp/content/word/edit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@
<button id="submitButton" class="btn-large waves-effect waves-light" type="submit" <c:if test="${empty contributor}">disabled</c:if>>
Edit <i class="material-icons right">send</i>
</button>
<a href="<spring:url value='/content/word/delete/${word.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
<c:if test="${not empty contributor}">
<a href="<spring:url value='/content/word/delete/${word.id}' />" class="waves-effect waves-red red-text btn-flat right">Delete</a>
</c:if>
</form:form>
</div>

Expand Down
Loading