1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
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" %>
9 <jsp:include page="../fragments/header_database.jsp" />
11 <div class="container">
12 <jsp:include page="../fragments/mainmenu.jsp" />
13 <spring:url value="/database/remove/go" var="formurl"/>
15 <div class="panel panel-default">
16 <div class="panel-heading">
17 <div style="font-weight:bold;">Delete jobs with the following conditions:</div>
19 <div class="panel-body">
20 <form method="get" action="${fn:escapeXml(formurl)}">
21 <!-- remove a particular job -->
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>
27 <!-- remove jobs executed on the dates: -->
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>
35 <!-- remove jobs executed from particular IP: -->
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>
41 <!-- remove jobs with a particular protein subsiquence: -->
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>
47 <p><input type="submit" name="Delete" value="Delete"/></p>
52 <jsp:include page="../fragments/footer.jsp"/>