]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-jsp/slcExecutionView.jsp
Centralize server spring configs
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / slc-jsp / slcExecutionView.jsp
1 <div id="main">
2 <h1>SLC Execution #${slcExecution.uuid}</h1>
3
4 <h2>Details</h2>
5 <table>
6 <tr>
7 <td>Host</td>
8 <td>${slcExecution.host}</td>
9 </tr>
10 <tr>
11 <td>User</td>
12 <td>${slcExecution.user}</td>
13 </tr>
14 <tr>
15 <td>Status</td>
16 <td>${slcExecution.status}</td>
17 </tr>
18 <tr>
19 <td>Type</td>
20 <td>${slcExecution.type}</td>
21 </tr>
22 <c:choose>
23 <c:when test="${slcExecution.type == 'org.argeo.slc.ant'}">
24 <tr>
25 <td>Script</td>
26 <td>${slcExecution.attributes['ant.file']}</td>
27 </tr>
28 </c:when>
29 </c:choose>
30 </table>
31
32 <h2>Execution Steps</h2>
33 <c:forEach items="${slcExecutionSteps}" var="slcExecutionStep">
34 <a name="step_${slcExecutionStep.uuid}"></a>
35 <h3 class="executionStep">${slcExecutionStep.begin} -
36 ${slcExecutionStep.uuid} (${slcExecutionStep.type})</h3>
37 <table>
38 <c:forEach items="${slcExecutionStep.logLines}"
39 var="slcExecutionStepLogLine">
40 <tr>
41 <td colspan="3">${slcExecutionStepLogLine}</td>
42 </tr>
43 </c:forEach>
44 </table>
45 </c:forEach></div>