]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/resultCollectionList.jsp
Display enhancement
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / jsp / resultCollectionList.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 Collections</h1>
12
13 <table cellspacing="0">
14 <thead>
15 <tr>
16 <th>Id</th>
17 </tr>
18 </thead>
19 <c:forEach items="${resultCollections}" var="resultCollection">
20 <tr>
21 <td>${resultCollection.id}</td>
22 <td><a
23 href="resultCollectionView.web?id=${resultCollection.id}">view</a></td>
24 </tr>
25 </c:forEach>
26 </table>
27
28 </div>
29
30 <%@include file="footer.txt"%>