]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-jsp/slcExecutionList.jsp
Integrate ActiveMQ on the server side
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / slc-jsp / slcExecutionList.jsp
1 <div id="main">
2 <h1>SLC Execution List</h1>
3
4 <table>
5 <thead>
6 <tr>
7 <td>UUID</td>
8 <td>STATUS</td>
9 <td>HOST</td>
10 <td>TYPE</td>
11 </tr>
12 </thead>
13 <c:forEach items="${slcExecutions}" var="slcExecution">
14 <tr>
15 <td>${slcExecution.uuid}</td>
16 <td>${slcExecution.status}</td>
17 <td>${slcExecution.host}</td>
18 <td>${slcExecution.type}</td>
19 <td><a href="slcExecutionView.web?uuid=${slcExecution.uuid}">view</a></td>
20 </tr>
21 </c:forEach>
22 </table>
23
24 </div>