]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-jsp/resultCollectionList.jsp
Integrate ActiveMQ on the server side
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / slc-jsp / resultCollectionList.jsp
1 <div id="main">
2 <h1>Result Collections</h1>
3
4 <table cellspacing="0">
5 <thead>
6 <tr>
7 <th>Id</th>
8 </tr>
9 </thead>
10 <c:forEach items="${resultCollections}" var="resultCollection">
11 <tr>
12 <td>${resultCollection.id}</td>
13 <td><a
14 href="resultCollectionView.web?id=${resultCollection.id}">view</a></td>
15 <td><a
16 href="resultCollectionViewXml.xslt?id=${resultCollection.id}">xml</a></td>
17 </tr>
18 </c:forEach>
19 </table>
20
21 </div>