]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionList.jsp
16ec29560a4e0dd40f313bed05abc7b8e3f48bb8
[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 <c:forEach items="${slcExecutions}" var="slcExecution">
14 <tr>
15 <td>${slcExecution.uuid}</td>
16 <td>${slcExecution.status}</td>
17 </tr>
18 </c:forEach>
19 </table>
20
21 </div>
22
23 <%@include file="footer.txt"%>