Better proteocache configuration for tests with real Jpred
[proteocache.git] / website / ReportLogInfo.jsp
1 <%@page import="java.util.ArrayList"%>
2 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
3 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
4 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
5 <%@ taglib uri="http://displaytag.sf.net" prefix="dt" %>
6 <h3>Jobs log information for: ${IdJob}</h3>
7 <h3>Time execution: ${timeExecution} ms</h3>
8 <p> Date Start : ${result.logInfo.dateStart}<br/>
9  Date End   : ${result.logInfo.dateEnd}<br/>
10  IP            : ${result.logInfo.ip}</p>
11 <table border="1" style="border-collapse: collapse; white-space: nowrap">
12 <tbody>
13 <tr>
14 <td> Sequence</td>
15 <td style="text-align: left; border-buttom: dotted; font-family: monospace"> ${result.logInfo.sequence}</td>
16 </tr>
17 <c:forEach items="${result.logInfo.prediction}" var="pred">
18 <tr>
19         <td> ${pred.key}</td>
20         <td style="text-align: left; border-buttom: dotted; font-family: monospace"> ${pred.value}</td>
21 </tr>
22 </c:forEach>
23 </tbody>
24 </table>