Improve front-end view of the website
[proteocache.git] / webapp / view / reportJobStatisticsOneDay.jsp
similarity index 83%
rename from webapp/view/ReportJobsOfOneDay.jsp
rename to webapp/view/reportJobStatisticsOneDay.jsp
index 0f1839d..9bde4ca 100644 (file)
 <jsp:include page="fragments/header.jsp" />
 <body>
        <div class="container">
-               <jsp:include page="fragments/bodyHeader.jsp" />
+               <jsp:include page="fragments/mainmenu.jsp" />
                <spring:url value="/joblog/query" var="jobquery" />
 
-<h3>Job statistics for ${date}</h3>
+<p style="font-weight:bold;">Job statistics for ${date}</p>
 
 <c:choose>
        <c:when test="${results == null}">
-               <h3>No jobs for the day...</h3>
+               <p>No jobs found...</p>
        </c:when>
        <c:otherwise>
-       <h3>${njobs} jobs found for the day:</h3>
-       <table border="1" style="border-collapse: collapse; white-space: nowrap">
+       <p>${njobs} jobs found for the day:</p>
+       <div class="table-responsive">
+       <table class="table table-striped table-hover table-bordered">
                <thead>
                        <tr>
                                <th style="text-align: centre">Job ID</th>
@@ -47,6 +48,7 @@
                        </c:forEach>
                </tbody>
        </table>
+       </div>
        </c:otherwise>
 </c:choose>