src/main/webapp/WEB-INF/jspf/sort-box.jspf

changeset 271
f8f5e82944fa
parent 270
8c088c628a20
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/webapp/WEB-INF/jspf/sort-box.jspf	Sun Jan 08 19:32:11 2023 +0100
@@ -0,0 +1,17 @@
+<%--
+Page attribute:
+  sortPriority: String
+  currentSort: IssueSorter.Criteria
+--%>
+<div style="display: inline-block">
+    <label class="caption" style="display:block;" for="sort_${sortPriority}"><fmt:message key="issue.filter.sort.${sortPriority}"/></label>
+    <select id="sort_${sortPriority}" name="sort_${sortPriority}">
+        <c:forEach var="criteria" items="${viewmodel.filter.sortCriteria}">
+            <option value="${criteria}" <c:if test="${currentSort eq criteria}">selected</c:if> >
+                <fmt:message key="${criteria.field.resourceKey}"/>
+                <c:if test="${criteria.asc}">&uarr;</c:if>
+                <c:if test="${not criteria.asc}">&darr;</c:if>
+            </option>
+        </c:forEach>
+    </select>
+</div>

mercurial