cf3459fde3a94d1eb2336a9d252bc60a3bc00479
[proteocache.git] / webapp / view / query / RemoveJobs.jsp
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
3 <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
4 <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
5 <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
6 <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
7
8 <html>
9 <jsp:include page="../fragments/header_database.jsp" />
10 <body>
11         <div class="container">
12         <jsp:include page="../fragments/mainmenu.jsp" />
13         <spring:url value="/database/remove/go" var="formurl"/>
14
15         <div class="panel panel-default">
16                 <div class="panel-heading">
17                         <div style="font-weight:bold;">Delete jobs with the following conditions:</div>
18                 </div>
19                 <div class="panel-body">
20                         <form method="get" action="${fn:escapeXml(formurl)}">
21                                 <!-- remove a particular job -->
22                                 <p>
23                                         <input type="checkbox" name="byId" onclick="show(this, 'id');" /> Job with the job Id
24                                         <div id='id' style="visibility:hidden;">Job Id: <input type="text" name="id" value="${samplejobid}" /></div>
25                                 </p>
26
27                                 <!-- remove jobs executed on the dates: -->
28                                 <p>
29                                         <input type="checkbox" name="byDate" onclick="show(this, 'date');" /> Jobs for the period
30                                         <div id='date' style="visibility:hidden;">
31                                         From <input type="text" name="date1" value = "${date1}" style=" width : 145px;" />
32                                         to <input type="text" name="date2" value = "${date2}" /></div>
33                                 </p>
34
35                                 <!-- remove jobs executed from particular IP: -->
36                                 <p>
37                                         <input type="checkbox" name="byIp" onclick="show(this, 'ip');" /> Jobs executed from the IP
38                                         <div id='ip' style="visibility:hidden;">IP: <input type="text" name="ip" value = '${sampleip}'/></div>
39                                 </p>
40                                 
41                                 <!-- remove jobs with a particular protein subsiquence: -->
42                                 <p>
43                                         <input type="checkbox" name="bySequence"  onclick="show(this, 'seq');"> Jobs with the protein subsequence
44                                         <div id='seq' style="visibility:hidden;"> Sequence: <input type="text" name="seq" value = "${sampleseq}"/></div>
45                                 </p>
46                                 
47                                 <p><input type="submit" name="Delete" value="Delete"/></p>
48                         </form>
49                 </div>
50         </div>
51
52         <jsp:include page="../fragments/footer.jsp"/>
53         </div>
54 </body>
55 </html>