Bug 27998: Replace obsolete title-string sorting: Serials templates
[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 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
11     <ol>
12         <li>
13             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
14         </li>
15         <li>
16             <a href="/cgi-bin/koha/course_reserves/course-reserves.pl">Course reserves</a>
17         </li>
18         <li>
19             <a href="#" aria-current="page">
20                 Add reserves for <em>[% course.course_name | html %]</em>
21             </a>
22         </li>
23     </ol>
24 </nav>
25
26 <div class="main container-fluid">
27     <div class="row">
28         <div class="col-md-8 col-md-offset-2">
29
30         [% IF ERROR_ITEM_NOT_FOUND %]
31             [% IF UNKNOWN_BARCODE %]
32                 <div class="dialog alert">No item found with barcode [% UNKNOWN_BARCODE | html %]</div>
33             [% ELSE %]
34                  <div class="dialog alert">No item found</div>
35             [% END %]
36         [% END %]
37
38         <form method="post" action="/cgi-bin/koha/course_reserves/add_items.pl">
39             <input type="hidden" name="course_id" value="[% course.course_id | html %]" />
40             <input type="hidden" name="action" value="lookup" />
41
42             <fieldset class="rows">
43                 <legend>Add items: scan barcode</legend>
44                 <ol>
45                     <li>
46                         <label class="required" for="barcode">Item barcode:</label>
47                         <input id="barcode" name="barcode" class="focus" type="text" />
48                     </li>
49                 </ol>
50             </fieldset>
51
52             <fieldset class="action">
53                 <input type="submit" value="Submit" class="submit" />
54
55                 <a href="/cgi-bin/koha/course_reserves/course-details.pl?course_id=[% course.course_id | uri %]" class="cancel">Cancel</a>
56             </fieldset>
57         </form>
58     </div>
59 </div>
60
61 [% INCLUDE 'intranet-bottom.inc' %]