]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionList.jsp
Various fixes so that SLC example works again
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / jsp / slcExecutionList.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="c" uri="http://java.sun.com/jsp/jstl/core"%>
5
6 <%@include file="header.txt"%>
7 <jsp:include page="common.jsp" />
8
9 <div id="main">
10 <h1>SLC Execution List</h1>
11
12 <table>
13 <thead>
14 <tr>
15 <td>UUID</td>
16 <td>STATUS</td>
17 <td>HOST</td>
18 <td>TYPE</td>
19 </tr>
20 </thead>
21 <c:forEach items="${slcExecutions}" var="slcExecution">
22 <tr>
23 <td>${slcExecution.uuid}</td>
24 <td>${slcExecution.status}</td>
25 <td>${slcExecution.host}</td>
26 <td>${slcExecution.type}</td>
27 <td><a href="slcExecutionView.web?uuid=${slcExecution.uuid}">view</a></td>
28 </tr>
29 </c:forEach>
30 </table>
31
32 </div>
33
34 <%@include file="footer.txt"%>