Koha/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-issue-note.tt
Martin Renvoize d43eea51dd Bug 28955: (follow-up) Set to fall back
This patch updates the original fix to only set the template parameter
for opac sessions and updates all occurences in templats to check first
for logged_in_user.branchcode before falling back to default_branch

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2022-02-24 14:35:36 -10:00

66 lines
3.4 KiB
Text

[% USE Koha %]
[% USE KohaDates %]
[% USE Branches %]
[% USE AdditionalContents %]
[% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
[% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode || default_branch, blocktitle => 0 ) %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Editing issue note for [% title | html %] &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
[% INCLUDE 'doc-head-close.inc' %]
[% BLOCK cssinclude %][% END %]
</head>
[% INCLUDE 'bodytag.inc' bodyid='opac-issue-note' %]
[% INCLUDE 'masthead.inc' %]
<div class="main">
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumbs">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="/cgi-bin/koha/opac-main.pl">Home</a>
</li>
<li class="breadcrumb-item">
<a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a>
</li>
<li class="breadcrumb-item active">
<a href="#" aria-current="page">Editing issue note for [% title | html %] [% author | html %]</a>
</li>
</ol>
</nav> <!-- /#breadcrumbs -->
<div class="container-fluid">
<div class="row">
<div class="col-lg-2">
<div id="navigation">
[% INCLUDE 'navigation.inc' IsPatronPage=1 %]
</div>
</div>
<div class="col-10 order-first order-md-first order-lg-2">
<div id="issuenote" class="maincontent">
<h1>Editing issue note for [% title | html %] [% author | html %]</h1>
[% IF not(Koha.Preference("AllowCheckoutNotes")) %]
Issue notes have not been enabled. Please contact the library.
[% ELSE %]
<form id="issue-note" action="/cgi-bin/koha/opac-issue-note.pl" method="post">
<legend class="sr-only">Edit issue note</legend>
<fieldset>
<label for="note" class="required">Note:</label>
<input type="text" name="note" value="[% note | html %]">
<input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]">
<input type="hidden" name="itemnumber" value="[% itemnumber | html %]">
<input type="hidden" name="issue_id" value="[% issue_id | html %]">
<input type="hidden" name="action" value="issuenote">
</fieldset>
<fieldset class="action">
<input type="submit" value="Submit note" class="btn btn-primary"><a href="/cgi-bin/koha/opac-user.pl" class="cancel">Cancel</a>
</fieldset>
</form> <!-- issue-note -->
[% END %]
</div> <!-- issuenote -->
</div> <!-- col-10 -->
</div> <!-- row-fluid -->
</div> <!-- container-fluid -->
</div> <!-- main -->
[% INCLUDE 'opac-bottom.inc' %]
[% BLOCK jsinclude %][% END %]