src/main/webapp/WEB-INF/jspf/version-list.jsp

Sun, 21 Jun 2020 11:56:36 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 21 Jun 2020 11:56:36 +0200
changeset 90
2c74e36752f9
parent 83
24a3596b8f98
permissions
-rw-r--r--

only show relevant versions in issue editor

universe@83 1 <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
universe@83 2
universe@83 3 <select name="${fieldname}" multiple>
universe@90 4 <c:forEach var="vselitem" items="${selectionList}">
universe@90 5 <option value="${vselitem.id}"
universe@83 6 <c:forEach var="v" items="${data}">
universe@90 7 <c:if test="${v eq vselitem}">selected</c:if>
universe@83 8 </c:forEach>
universe@83 9 >
universe@90 10 <c:out value="${vselitem.name}" />
universe@83 11 </option>
universe@83 12 </c:forEach>
universe@83 13 </select>

mercurial