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

Sun, 21 Jun 2020 11:43:08 +0200

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

fix: issue status Scheduled belongs to phase 0

<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

<select name="${fieldname}" multiple>
    <c:forEach var="version" items="${versions}">
        <option value="${version.id}"
                <c:forEach var="v" items="${data}">
                    <c:if test="${v eq version}">selected</c:if>
                </c:forEach>
        >
            <c:out value="${version.name}" />
        </option>
    </c:forEach>
</select>

mercurial