]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.webapp/src/main/webapp/WEB-INF/slc-jsp/resultList.jsp
Improve error management:
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / slc-jsp / resultList.jsp
index 3ae2101dd83a3ca085a753b406354a8c1b73a9ab..2bfd1a3a3b4f8c1072fe54a2d7a91ae10c8f754b 100644 (file)
@@ -1,28 +1,32 @@
-<div id="main">\r
-<h1>Results</h1>\r
-\r
-<table cellspacing="0">\r
-       <thead>\r
-               <tr>\r
-                       <th>Id</th>\r
-                       <th>Status</th>\r
-               </tr>\r
-       </thead>\r
-       <c:forEach items="${results}" var="result">\r
-               <tr>\r
-                       <td>${result.uuid}</td>\r
-                       <c:choose>\r
-                               <c:when test="${result.closeDate != null}">\r
-                                       <td>${result.closeDate}</td>\r
-                               </c:when>\r
-                               <c:otherwise>\r
-                                       <td>NOT CLOSED</td>\r
-                               </c:otherwise>\r
-                       </c:choose>\r
-                       <td style="padding-right: 5px"><a href="resultView.web?uuid=${result.uuid}">view</a></td>\r
-                       <td><a href="resultView.xslt?uuid=${result.uuid}">xsl</a></td>\r
-               </tr>\r
-       </c:forEach>\r
-</table>\r
-\r
-</div>\r
+<div id="main">
+<h1>Results</h1>
+
+<table cellspacing="0">
+       <thead>
+               <tr>
+                       <th>Id</th>
+                       <th>Status</th>
+               </tr>
+       </thead>
+       <c:forEach items="${results}" var="result">
+               <tr>
+                       <td>${result.uuid}</td>
+                       <c:choose>
+                               <c:when test="${result.closeDate != null}">
+                                       <td>${result.closeDate}</td>
+                               </c:when>
+                               <c:otherwise>
+                                       <td>NOT CLOSED</td>
+                               </c:otherwise>
+                       </c:choose>
+                       <td style="padding-right: 5px"><a
+                               href="resultView.web?uuid=${result.uuid}">view</a></td>
+                       <td><a href="resultView.xslt?uuid=${result.uuid}">xsl</a></td>
+                       <td><a href="resultViewXml.xslt?uuid=${result.uuid}">xml</a></td>
+                       <td><a href="resultView.xls?uuid=${result.uuid}">xls</a></td>
+                       <td><a href="resultView.pdf?uuid=${result.uuid}">pdf</a></td>
+               </tr>
+       </c:forEach>
+</table>
+
+</div>