Bug 16682: (followup) Fix display if Batch patron modification tool does not get any patrons
Format message as proposed in comment #8 Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
c0d420f42a
commit
5a1f3acaab
1 changed files with 6 additions and 1 deletions
|
@ -175,7 +175,12 @@
|
|||
[% IF ( op == 'show') && (!borrowers) && (!notfoundcardnumbers) # Alert if no patrons given%]
|
||||
[% op = 'noshow' # Change op to prevent display in code below %]
|
||||
<h1>Batch patrons modification</h1>
|
||||
<div class="dialog alert">No patron card numbers given. <a href="/cgi-bin/koha/tools/modborrowers.pl" class="btn btn-mini">Back</a></div>
|
||||
<div class="dialog alert">
|
||||
<p>No patron card numbers given.</p>
|
||||
<form action="/cgi-bin/koha/tools/modborrowers.pl" method="get">
|
||||
<button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> OK</button>
|
||||
</form>
|
||||
</div>
|
||||
[% END #Alert if no patrons %]
|
||||
|
||||
[% IF ( op == 'show' or op == 'show_results' ) %]
|
||||
|
|
Loading…
Reference in a new issue