]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionView.jsp
Various fixes so that SLC example works again
[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 <c:forEach items="${slcExecutionSteps}" var="slcExecutionStep">
15 <a name="step_${slcExecutionStep.uuid}"></a>
16 <h3 class="executionStep">${slcExecutionStep.begin} - ${slcExecutionStep.uuid}
17 (${slcExecutionStep.type})</h3>
18 <table>
19 <c:forEach items="${slcExecutionStep.logLines}"
20 var="slcExecutionStepLogLine">
21 <tr>
22 <td colspan="3">${slcExecutionStepLogLine}</td>
23 </tr>
24 </c:forEach>
25 </table>
26 </c:forEach></div>
27
28 <%@include file="footer.txt"%>