Lines 6-12
Link Here
|
6 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
6 |
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
7 |
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
7 |
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %] |
8 |
[% INCLUDE 'doc-head-open.inc' %] |
8 |
[% INCLUDE 'doc-head-open.inc' %] |
9 |
<title>Editing issue note for [% title | html %] › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title> |
9 |
<title>Editing checkout note for [% title | html %] › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title> |
10 |
[% INCLUDE 'doc-head-close.inc' %] |
10 |
[% INCLUDE 'doc-head-close.inc' %] |
11 |
[% BLOCK cssinclude %][% END %] |
11 |
[% BLOCK cssinclude %][% END %] |
12 |
</head> |
12 |
</head> |
Lines 23-29
Link Here
|
23 |
<a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> |
23 |
<a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> |
24 |
</li> |
24 |
</li> |
25 |
<li class="breadcrumb-item active"> |
25 |
<li class="breadcrumb-item active"> |
26 |
<a href="#" aria-current="page">Editing issue note for '[% title | html %]' [% author | html %]</a> |
26 |
<a href="#" aria-current="page">Editing checkout note for '[% title | html %]' [% author | html %]</a> |
27 |
</li> |
27 |
</li> |
28 |
</ol> |
28 |
</ol> |
29 |
</nav> <!-- /#breadcrumbs --> |
29 |
</nav> <!-- /#breadcrumbs --> |
Lines 37-48
Link Here
|
37 |
</div> |
37 |
</div> |
38 |
<div class="col-10 order-first order-md-first order-lg-2"> |
38 |
<div class="col-10 order-first order-md-first order-lg-2"> |
39 |
<div id="issuenote" class="maincontent"> |
39 |
<div id="issuenote" class="maincontent"> |
40 |
<h1>Editing issue note for [% title | html %] [% author | html %]</h1> |
40 |
<h1>Editing checkout note for [% title | html %] [% author | html %]</h1> |
41 |
[% IF not(Koha.Preference("AllowCheckoutNotes")) %] |
41 |
[% IF not(Koha.Preference("AllowCheckoutNotes")) %] |
42 |
Issue notes have not been enabled. Please contact the library. |
42 |
Checkout notes have not been enabled. Please contact the library. |
43 |
[% ELSE %] |
43 |
[% ELSE %] |
44 |
<form id="issue-note" action="/cgi-bin/koha/opac-issue-note.pl" method="post"> |
44 |
<form id="issue-note" action="/cgi-bin/koha/opac-issue-note.pl" method="post"> |
45 |
<legend class="sr-only">Edit issue note</legend> |
45 |
<legend class="sr-only">Edit checkout note</legend> |
46 |
<fieldset> |
46 |
<fieldset> |
47 |
<label for="note" class="required">Note:</label> |
47 |
<label for="note" class="required">Note:</label> |
48 |
<input type="text" name="note" value="[% note | html %]"> |
48 |
<input type="text" name="note" value="[% note | html %]"> |
49 |
- |
|
|