]> git.argeo.org Git - gpl/argeo-slc.git/blob - resultCollectionList.jsp
576361f231a390439ed9a8a83a01aa6d1c818d4d
[gpl/argeo-slc.git] / 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>