1. Move query jsps into a separate directory
[proteocache.git] / webapp / view / reportJobLog.jsp
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
3 <%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
4 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
5 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
6 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
7 <%@page import="java.util.ArrayList"%>
8
9 <html>
10 <jsp:include page="fragments/header.jsp" />
11 <body>
12         <div class="container">
13                 <jsp:include page="fragments/mainmenu.jsp" />
14                 <spring:url value="/sequence/sequence/results" var="sequence_query" />
15                 <spring:url value="/admin/ip/results" var="ip_query" />
16
17                 <div class="panel panel-default">
18                 <div class="panel-heading">
19                         <p style="font-weight:bold;">Information for the job ${IdJob}</p>
20                 </div>
21                 <div class="panel-body">
22                         <p>Start timestamp : ${result.dateStart}</p>
23                         <p>End timestamp : ${result.dateEnd}</p>
24                         <p>IP: <a title="Click to view other jobs" href="${ip_query}?ip=${result.ip}">${result.ip}</a></p>
25
26                         <table class="table table-striped table-hover table-bordered">
27                         <tbody>
28                                 <tr>
29                                         <td>Sequence</td>
30                                         <td style="text-align: left; border-buttom: dotted; font-family: monospace">
31                                                 <a title="Click to view other jobs" href="${sequence_query}?sequence=${result.sequence}&searchtype=whole">${result.sequence}</a>
32                                         </td>
33                                 </tr>
34                                 <c:forEach items="${result.prediction}" var="pred">
35                                         <tr>
36                                                 <td>${pred.key}</td>
37                                                 <td style="text-align: left; border-buttom: dotted; font-family: monospace">${pred.value}</td>
38                                         </tr>
39                                 </c:forEach>
40                         </tbody>
41                         </table>
42                 </div>
43                 </div>
44
45                 <jsp:include page="fragments/footer.jsp" />
46         </div>
47 </body>
48 </html>