]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/resultCollectionView.jsp
Display enhancement
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / jsp / resultCollectionView.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>Result Collection ${resultCollection.id}</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="${resultCollection.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
33 href="removeResultFromCollection.web?resultUuid=${result.uuid}&collectionId=${resultCollection.id}">remove</a></td>
34 </tr>
35 </c:forEach>
36 </table>
37
38 </div>
39
40 <%@include file="footer.txt"%>