Merge branch 'servlets'
[proteocache.git] / website / ReportLogInfo.jsp
index d4079ad..97ec1f3 100644 (file)
@@ -5,7 +5,20 @@
 <%@ taglib uri="http://displaytag.sf.net" prefix="dt" %>
 <h3>Jobs log information for: ${IdJob}</h3>
 <h3>Time execution: ${timeExecution} ms</h3>
-<p> Date Start : ${result.logInfo.dateStart}</p>
-<p> Date End   : ${result.logInfo.dateEnd}</p>
-<p> Sequence   : ${result.logInfo.sequence}</p>
-
+<p> Date Start : ${result.logInfo.dateStart}<br/>
+ Date End   : ${result.logInfo.dateEnd}<br/>
+ IP            : ${result.logInfo.ip}</p>
+<table border="1" style="border-collapse: collapse; white-space: nowrap">
+<tbody>
+<tr>
+<td> Sequence</td>
+<td style="text-align: left; border-buttom: dotted; font-family: monospace"> ${result.logInfo.sequence}</td>
+</tr>
+<c:forEach items="${result.logInfo.prediction}" var="pred">
+<tr>
+       <td> ${pred.key}</td>
+       <td style="text-align: left; border-buttom: dotted; font-family: monospace"> ${pred.value}</td>
+</tr>
+</c:forEach>
+</tbody>
+</table>