]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionView.jsp
Update configs to more relevant versions
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / jsp / slcExecutionView.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 Details</h1>
11 <h2>Uuid = ${slcExecution.uuid}</h2>
12 <br>
13 <h2>Execution Steps</h2>
14 <table>
15 <tr>
16 <td>UUID</td>
17 <td>TYPE</td>
18 <td>BEGIN</td>
19 </tr>
20 <c:forEach items="${slcExecutionSteps}" var="slcExecutionStep">
21 <tr>
22 <td>${slcExecutionStep.uuid}</td>
23 <td>${slcExecutionStep.type}</td>
24 <td>${slcExecutionStep.begin}</td>
25 </tr>
26 <c:forEach items="${slcExecutionStep.logLines}" var="slcExecutionStepLog">
27 <tr>
28 <td colspan="3">- <em>${slcExecutionStepLog}</em></td>
29 </tr>
30 </c:forEach>
31 <tr>
32 </tr>
33 </c:forEach>
34
35 </table>
36 </div>
37
38 <%@include file="footer.txt"%>