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

Sat, 30 May 2020 18:05:06 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 30 May 2020 18:05:06 +0200
changeset 83
24a3596b8f98
child 90
2c74e36752f9
permissions
-rw-r--r--

adds version selection 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@83 4 <c:forEach var="version" items="${versions}">
universe@83 5 <option value="${version.id}"
universe@83 6 <c:forEach var="v" items="${data}">
universe@83 7 <c:if test="${v eq version}">selected</c:if>
universe@83 8 </c:forEach>
universe@83 9 >
universe@83 10 <c:out value="${version.name}" />
universe@83 11 </option>
universe@83 12 </c:forEach>
universe@83 13 </select>

mercurial