0f20353ee387c147a24d2b99e17b660eca0f0ab4
[jabaws.git] / webservices / compbio / nosql / WebContent / ReportLength.jsp
1 <%@page import="java.util.ArrayList"%>
2 <%@ page trimDirectiveWhitespaces="true" %>
3 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
4 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
5 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
6 <%@ taglib uri="http://displaytag.sf.net" prefix="dt" %>
7
8 <h3>Time execution for the interval: ${data1}  -  ${data2}</h3> 
9 <table border="1" style = "border-collapse: collapse; white-space: nowrap"> 
10 <thead>
11 <tr>
12 <th style="text-align: centre">Date</th>
13 <th style="text-align: centre">less then 1s</th>
14 <th style="text-align: centre">less then 10s</th>
15 <th style="text-align: centre">less then 20s</th>
16 <th style="text-align: centre">more then 20s</th>
17 </tr>
18 </thead>
19 <tbody>
20 <c:forEach items="${result}" var="res">
21 <tr>
22 <td>${res.date}</td>
23 <c:forEach items="${res.timeRez}" var="time">
24 <td>${time}</td>
25 </c:forEach>
26 </c:forEach>
27 </tbody>
28 </table>