Martin Renvoize
d43eea51dd
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>
70 lines
3.7 KiB
Text
70 lines
3.7 KiB
Text
[% USE Koha %]
|
|
[% 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>Discharge › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
[% BLOCK cssinclude %][% END %]
|
|
</head>
|
|
<body id="opac-discharge" class="scrollto">
|
|
[% 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 active">
|
|
<a href="#" aria-current="page">Discharge</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="discharge" class="maincontent">
|
|
<h1>Discharge</h1>
|
|
[% FOR message IN messages %]
|
|
<div class="dialog [% message.type | html %]">
|
|
[% IF message.code == "unable_to_generate_pdf" %]
|
|
An error occurs when generating the pdf file.
|
|
Please contact the staff to resolve this problem.
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
|
|
[% IF success %]
|
|
<p>Your discharge request has been sent. Your discharge will be available on this page within a few days.</p>
|
|
[% ELSIF available %]
|
|
<a href="/cgi-bin/koha/opac-discharge.pl?op=get">Get your discharge</a></li>
|
|
[% ELSIF pending %]
|
|
<p>Your discharge will be available on this page within a few days.</p>
|
|
[% ELSIF has_issues %]
|
|
<p>You cannot be discharged, you have checked out items. Please return items before asking for a discharge.</p>
|
|
[% ELSIF not messages %]
|
|
<h2>What is a discharge?</h2>
|
|
<p>This document certifies that you have returned all borrowed items. It is sometimes asked during a file transfer from a school to another. The discharge is sent by us to your school. You will also find it available on your reader account.</p>
|
|
<p><strong>Warning</strong>: This request is only valid if you are in good standing with the library. Once the application is made, you can not borrow library materials.</p>
|
|
[% IF has_checkouts %]
|
|
<div class="alert alert-info">You cannot be discharged, you have checked out items. Please return items before asking for a discharge.</div>
|
|
[% ELSE %]
|
|
<a class="btn btn-primary" href="/cgi-bin/koha/opac-discharge.pl?op=request">Ask for a discharge</a>
|
|
[% END %]
|
|
|
|
[% END %]
|
|
</div> <!-- / #discharge -->
|
|
</div> <!-- / .col-10 -->
|
|
</div> <!-- / .row -->
|
|
</div> <!-- / .container-fluid -->
|
|
</div> <!-- / .main -->
|
|
|
|
[% INCLUDE 'opac-bottom.inc' %]
|
|
[% BLOCK jsinclude %][% END %]
|