Bug 28066: Remove select tag's size attribute where it is 1
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / scheduler.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha &rsaquo; Tools &rsaquo; Task scheduler</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 </head>
8
9 <body id="tools_scheduler" class="tools">
10 [% INCLUDE 'header.inc' %]
11 [% INCLUDE 'circ-search.inc' %]
12
13 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
14     <ol>
15         <li>
16             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
17         </li>
18         <li>
19             <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
20         </li>
21         <li>
22             <a href="#" aria-current="page">
23                 Task scheduler
24             </a>
25         </li>
26     </ol>
27 </nav>
28
29 <div class="main container-fluid">
30     <div class="row">
31         <div class="col-sm-10 col-sm-push-2">
32             <main>
33
34 [% IF ( job_add_failed ) %]
35 <div class="dialog message">Failed to add scheduled task</div>
36 [% END %]
37
38 <form name="form1" action="scheduler.pl" method="post">
39 <input type="hidden" name="mode" value="job_add" />
40
41 <fieldset class="rows">
42 <legend>Task scheduler</legend><ol>
43 <li><span class="label">Current server time is:</span>
44 [% time | html %]</li>
45 <li><label for="starttime">Time:</label>
46 <input type="text" name="starttime" id="starttime" value="" maxlength="5" size="5" /></li>
47 <li><label for="startdate">Date: </label> <input type="text" size="10" id="startdate" name="startdate" value="" />
48 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
49 </li>
50 <li><label for="report">Report:</label>
51 <select name="report" id="report">
52 [% FOREACH savedreport IN savedreports %]
53     [% IF ( savedreport.selected ) %]
54         <option value="[% savedreport.id | html %]" selected="selected">[% savedreport.report_name | html %]</option>
55     [% ELSE %]
56         <option value="[% savedreport.id | html %]">[% savedreport.report_name | html %]</option>
57     [% END %]
58 [% END %]
59 </select>
60 </li>
61 <li>
62     <label for="format">Output format:</label>
63     <select name="format" id="format">
64         <option value="text">Text (TSV)</option>
65         <option value="csv">CSV</option>
66         <option value="html">HTML</option>
67     </select>
68 </li>
69 <li><label for="email">Email:</label>
70
71 <input type="text" name="email" id="email" size="50" />
72 </li>
73 </ol></fieldset>
74 <fieldset class="action"><input class="submit-button" type="submit" value="Save" /></fieldset>
75 </form>
76
77 [% IF ( JOBS ) %]<h2>Jobs already entered</h2>
78 <table>
79 <tr>
80 <th>Date/Time</th>
81 <th>Action</th>
82 <th>&nbsp;</th>
83 </tr>
84 [% FOREACH JOB IN JOBS %]
85 <form action="scheduler.pl" method="post">
86 <input type="hidden" name="mode" value="job_change" />
87
88 <tr>
89 <td>[% JOB.TIME | html %]</td>
90 <td>[% JOB.TAG | html %]</td>
91 <td><input type="submit" name="delete" value="Delete" /></td>
92 </tr>
93 <input type="hidden" name="jobid" value="[% JOB.JOBID | html %]" />
94 </form>
95 [% END %]
96 </table>[% END %]
97
98             </main>
99         </div> <!-- /.col-sm-10.col-sm-push-2 -->
100
101         <div class="col-sm-2 col-sm-pull-10">
102             <aside>
103                 [% INCLUDE 'tools-menu.inc' %]
104                 [% INCLUDE 'guided-reports-view.inc' %]
105             </aside>
106         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
107      </div> <!-- /.row -->
108
109 [% MACRO jsinclude BLOCK %]
110     [% Asset.js("js/tools-menu.js") | $raw %]
111     [% INCLUDE 'calendar.inc' %]
112     <script>
113         $(document).ready(function(){
114             $("#startdate").datepicker({ minDate: "+0D" });
115         });
116     </script>
117 [% END %]
118
119 [% INCLUDE 'intranet-bottom.inc' %]