--- /dev/null
+<%@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