First working Spring-based version
[proteocache.git] / website / ReportJobsByADay.jsp
diff --git a/website/ReportJobsByADay.jsp b/website/ReportJobsByADay.jsp
deleted file mode 100644 (file)
index a66f198..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<%@page import="java.util.ArrayList"%>
-<%@ page trimDirectiveWhitespaces="true"%>
-<%@ 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"%>
-<%@ taglib uri="http://displaytag.sf.net" prefix="dt"%>
-
-<h3>Dundee ProteoCache query result for ${date}</h3>
-
-<c:choose>
-       <c:when test="${result == null}">
-               <h3>No jobs for a day ${date} </h3>
-       </c:when>
-       <c:otherwise>
-               
-       <table border="1" style="border-collapse: collapse; white-space: nowrap">
-               <thead>
-                       <tr>
-                               <th style="text-align: centre">ID</th>
-                               <th style="text-align: left">Sequence of protein</th>
-                       </tr>
-               </thead>
-               <tbody>
-                       <c:forEach items="${result}" var="res" varStatus="status">
-                               <tr>
-                                       <td><a href="ServletLogInfo?IdJob=${res.id}">${res.id}</a></td>
-                                       <td style="text-align: left; border-buttom: dotted; font-family: monospace">${res.prot}</td>
-                               </tr>
-                       </c:forEach>
-               </tbody>
-       </table>
-       </c:otherwise>
-</c:choose>
\ No newline at end of file