]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/resultList.jsp
30870b9c6c5e369f1928a1e01be7db76706a60ba
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / jsp / resultList.jsp
1 <?xml version="1.0" encoding="ISO-8859-1" ?>
2 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
3 pageEncoding="ISO-8859-1"%>
4 <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
5 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
6
7 <%@include file="header.txt"%>
8 <jsp:include page="common.jsp" />
9
10 <div id="main">
11 <h1>Results</h1>
12
13 <table cellspacing="0">
14 <thead>
15 <tr>
16 <th>Id</th>
17 <th>Status</th>
18 </tr>
19 </thead>
20 <c:forEach items="${results}" var="result">
21 <tr>
22 <td>${result.uuid}</td>
23 <c:choose>
24 <c:when test="${result.closeDate != null}">
25 <td>${result.closeDate}</td>
26 </c:when>
27 <c:otherwise>
28 <td>NOT CLOSED</td>
29 </c:otherwise>
30 </c:choose>
31 <td><a href="resultView.web?uuid=${result.uuid}">view</a></td>
32 <td><a href="resultView.xslt?uuid=${result.uuid}">xsl</a></td>
33 </tr>
34 </c:forEach>
35 </table>
36
37 </div>
38
39 <%@include file="footer.txt"%>