Bug 13618: Add html filters to all the variables
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / course_reserves / add_items-step1.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Course reserves &rsaquo; Add items</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body id="courses_add_items_step1" class="course">
6
7 [% INCLUDE 'header.inc' %]
8 [% INCLUDE 'cat-search.inc' %]
9
10 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/course_reserves/course-reserves.pl">Course reserves</a> &rsaquo; Add reserves for <i><a href="/cgi-bin/koha/course_reserves/course-details.pl?course_id=[% course.course_id | html %]">[% course.course_name | html %]</a></i></div>
11
12 <div class="main container-fluid">
13     <div class="row">
14         <div class="col-md-8 col-md-offset-2">
15
16         [% IF ERROR_ITEM_NOT_FOUND %]
17             [% IF UNKNOWN_BARCODE %]
18                 <div class="dialog alert">No item found with barcode [% UNKNOWN_BARCODE | html %]</div>
19             [% ELSE %]
20                  <div class="dialog alert">No item found</div>
21             [% END %]
22         [% END %]
23
24         <form method="post" action="/cgi-bin/koha/course_reserves/add_items.pl">
25             <input type="hidden" name="course_id" value="[% course.course_id | html %]" />
26             <input type="hidden" name="action" value="lookup" />
27
28             <fieldset class="rows">
29                 <legend>Add items: scan barcode</legend>
30                 <ol>
31                     <li>
32                         <label class="required" for="barcode">Item barcode:</label>
33                         <input id="barcode" name="barcode" class="focus" type="text" />
34                     </li>
35                 </ol>
36             </fieldset>
37
38             <fieldset class="action">
39                 <input type="submit" value="Submit" class="submit" />
40
41                 <a href="/cgi-bin/koha/course_reserves/course-details.pl?course_id=[% course.course_id | html %]" class="cancel">Cancel</a>
42             </fieldset>
43         </form>
44     </div>
45 </div>
46
47 [% INCLUDE 'intranet-bottom.inc' %]