]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-jsp/resultList.jsp
3ae2101dd83a3ca085a753b406354a8c1b73a9ab
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / slc-jsp / resultList.jsp
1 <div id="main">
2 <h1>Results</h1>
3
4 <table cellspacing="0">
5 <thead>
6 <tr>
7 <th>Id</th>
8 <th>Status</th>
9 </tr>
10 </thead>
11 <c:forEach items="${results}" var="result">
12 <tr>
13 <td>${result.uuid}</td>
14 <c:choose>
15 <c:when test="${result.closeDate != null}">
16 <td>${result.closeDate}</td>
17 </c:when>
18 <c:otherwise>
19 <td>NOT CLOSED</td>
20 </c:otherwise>
21 </c:choose>
22 <td style="padding-right: 5px"><a href="resultView.web?uuid=${result.uuid}">view</a></td>
23 <td><a href="resultView.xslt?uuid=${result.uuid}">xsl</a></td>
24 </tr>
25 </c:forEach>
26 </table>
27
28 </div>