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

Thu, 22 Oct 2020 13:06:46 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 22 Oct 2020 13:06:46 +0200
changeset 139
6abc75d213ef
parent 115
c27638a50c92
child 178
88207b860cba
permissions
-rw-r--r--

fixes issue list not using the project's node

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