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

Fri, 18 Dec 2020 16:16:54 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 18 Dec 2020 16:16:54 +0100
changeset 165
b1fc8aed5969
parent 115
c27638a50c92
child 178
88207b860cba
permissions
-rw-r--r--

Add mailto link to the display name above comments - fixes #112

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