Bug 20168: Update of the OPAC bootstrap template to bootstrap v4
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-issue-note.tt
1 [% USE Koha %]
2 [% USE KohaDates %]
3 [% USE Branches %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Editing issue note for [% title | html %]</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 [% BLOCK cssinclude %][% END %]
8 </head>
9 [% INCLUDE 'bodytag.inc' bodyid='opac-issue-note' %]
10 [% INCLUDE 'masthead.inc' %]
11
12 <div class="main">
13     <nav aria-label="breadcrumb">
14         <ul class="breadcrumb">
15             <li class="breadcrumb-item">
16                 <a href="/cgi-bin/koha/opac-main.pl">Home</a>
17             </li>
18             <li class="breadcrumb-item">
19                 <a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a>
20             </li>
21             <li class="breadcrumb-item active" aria-current="page">
22                 <a href="#">Editing issue note for [% title | html %] [% author | html %]</a>
23             </li>
24         </ul>
25     </nav>
26
27     <div class="container-fluid">
28         <div class="row">
29             <div class="col-lg-2">
30                 <div id="navigation">
31                     [% INCLUDE 'navigation.inc' IsPatronPage=1 %]
32                 </div>
33             </div>
34             <div class="col-10 order-first order-md-first order-lg-2">
35                 <div id="issuenote" class="maincontent">
36                     <h2>Editing issue note for [% title | html %] [% author | html %]</h2>
37                         [% IF not(Koha.Preference("AllowCheckoutNotes")) %]
38                             Issue notes have not been enabled. Please contact the library.
39                         [% ELSE %]
40                             <form id="issue-note" action="/cgi-bin/koha/opac-issue-note.pl" method="post">
41                                 <fieldset>
42                                     <label for="note" class="required">Note:</label>
43                                     <input type="text" name="note" value="[% note | html %]">
44                                     <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]">
45                                     <input type="hidden" name="itemnumber" value="[% itemnumber | html %]">
46                                     <input type="hidden" name="issue_id" value="[% issue_id | html %]">
47                                     <input type="hidden" name="action" value="issuenote">
48                                 </fieldset>
49                                 <fieldset class="action">
50                                     <input type="submit" value="Submit note" class="btn btn-primary"><a href="/cgi-bin/koha/opac-user.pl" class="cancel">Cancel</a>
51                                 </fieldset>
52                             </form> <!-- issue-note -->
53                         [% END %]
54                 </div> <!-- issuenote -->
55             </div> <!-- col-10 -->
56         </div> <!-- row-fluid -->
57     </div> <!-- container-fluid -->
58
59 </div> <!-- main -->
60
61 [% INCLUDE 'opac-bottom.inc' %]
62 [% BLOCK jsinclude %][% END %]