Improve visibility of the website
[proteocache.git] / webapp / view / reportTimeExecution.jsp
index 9c642e8..14b4dac 100644 (file)
@@ -1,12 +1,11 @@
-<%@ page language="java" contentType="text/html; charset=UTF-8"
-       pageEncoding="UTF-8"%>
+<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 
 <%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
-<%@ page trimDirectiveWhitespaces="true"%>
+
 <%@page import="java.util.ArrayList"%>
 
 <html>
        <div class="container">
                <jsp:include page="fragments/mainmenu.jsp" />
 
+       <div class="panel panel-default">
+       <div class="panel-heading">
+
                <c:choose>
                        <c:when test="${flag == 'AllDate'}">
-                               <h3>Time execution for the whole period</h3>
+                               <p style="font-weight:bold;">Time execution for the whole period</p>
                        </c:when>
                        <c:otherwise>
-                               <h3>Time execution for the interval: ${data1} - ${data2}</h3>
+                               <p style="font-weight:bold;">Time execution for the interval: ${data1} - ${data2}</p>
                        </c:otherwise>
                </c:choose>
-               <h3>Time execution: ${timeExecution} ms</h3>
+
+       </div>
+       <div class="panel-body">
 
                <c:set var="sum" value="0" />
                <c:forEach items="${result}" var="res" varStatus="loop">
                        </c:choose>
                </c:forEach>
 
-               <h3>Total number of jobs: ${sum}</h3>
+               <p>There are ${sum} jobs in total</p>
 
-               <table border="1"
-                       style="border-collapse: collapse; white-space: nowrap">
+               <table class="table table-striped table-hover table-bordered">
                        <thead>
                                <tr>
                                        <th style="text-align: center; width: 150px">Date</th>
@@ -79,6 +82,8 @@
                        </tbody>
                </table>
 
+       </div>
+       </div>
 
                <jsp:include page="fragments/footer.jsp" />
        </div>