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

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

mercurial