bug 4505 followup - template changes
* fix syntax error * adjust wording - "patron" instead of "borrower" * handle case where overdue items should require confirmation of loan by operator * fix typo in system preference template Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
This commit is contained in:
parent
b06c59e6ca
commit
b7a5bbefe8
2 changed files with 7 additions and 4 deletions
|
@ -190,7 +190,7 @@ Circulation:
|
|||
choices:
|
||||
block: Block
|
||||
noblock: "Don't block"
|
||||
confirmatio: Ask for confirmation
|
||||
confirmation: Ask for confirmation
|
||||
- when checking out to a borrower that has overdues outstanding
|
||||
Holds Policy:
|
||||
-
|
||||
|
|
|
@ -242,6 +242,9 @@ function refocus(calendar) {
|
|||
<!-- TMPL_IF NAME="NOT_FOR_LOAN_FORCING" -->
|
||||
<li>Item is normally not for loan. Check out anyway?</li>
|
||||
<!-- /TMPL_IF -->
|
||||
<!-- TMPL_IF NAME="USERBLOCKEDREMAINING" -->
|
||||
<li>This patron has overdue items. Check out anyway?</li>
|
||||
<!-- /TMPL_IF -->
|
||||
</ul>
|
||||
|
||||
<form method="post" action="/cgi-bin/koha/circ/circulation.pl">
|
||||
|
@ -338,9 +341,9 @@ function refocus(calendar) {
|
|||
<li>This item belongs to <!-- TMPL_VAR NAME="itemhomebranch" --> and cannot be issued from this location.</li>
|
||||
<!-- /TMPL_IF -->
|
||||
|
||||
<!-- TMPL_IF NAME="USERBLOCKEDREMAINING" --:
|
||||
<li>Check out blocked as borrower has overdues outstanding</li>
|
||||
<!-- /TMPL_IF -->
|
||||
<!-- TMPL_IF NAME="USERBLOCKEDREMAINING" -->
|
||||
<li>Patron has overdue items</li>
|
||||
<!-- /TMPL_IF -->
|
||||
</ul>
|
||||
|
||||
<!-- TMPL_IF NAME="memberofinstution" -->
|
||||
|
|
Loading…
Reference in a new issue