]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-jsp/resultCollectionView.jsp
Integrate ActiveMQ on the server side
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / slc-jsp / resultCollectionView.jsp
1 <div id="main">
2 <h1>Result Collection ${resultCollection.id}</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="${resultCollection.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><a href="resultView.web?uuid=${result.uuid}">view</a></td>
23 <td><a
24 href="removeResultFromCollection.web?resultUuid=${result.uuid}&collectionId=${resultCollection.id}">remove</a></td>
25 </tr>
26 </c:forEach>
27 </table>
28
29 </div>