Bug 29169: Fix wrong terminology when article request is not available

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Tomás Cohen Arazi 2021-10-07 12:02:24 -03:00 committed by Jonathan Druart
parent 67ead5e7ae
commit 3bdeae3459

View file

@ -33,7 +33,15 @@
<div class="container-fluid maincontent">
<div class="row">
<div class="col">
[% IF !error_message && biblio.can_article_request( patron ) %]
[% IF error_message %]
<h1 class="title">[% biblio.title | html %]</h1>
<div class="alert alert-info">
[% SWITCH error_message %]
[% CASE 'article_request_limit_reached' %]You reached your open article requests limit.
[% CASE 'article_request_unhandled_exception' %]An error has occurred.
[% END %]
</div>
[% ELSIF biblio.can_article_request( patron ) %]
<h1>Place article request for [% biblio.title | html %]</h1>
[% IF ( disclaimer && !action) %]
<div class="alert alert-warning">
@ -216,14 +224,6 @@
<input type="submit" class="btn btn-primary" value="Place request" />
</form>
[% END %]
[% ELSIF error_message %]
<h1 class="title">[% biblio.title | html %]</h1>
<div class="alert alert-info">
[% SWITCH error_message %]
[% CASE 'article_request_limit_reached' %]You reached your article requests daily limit.
[% CASE 'article_request_unhandled_exception' %]An error has occurred.
[% END %]
</div>
[% ELSE %]
<h1 class="title">[% biblio.title | html %]</h1>
<div class="alert alert-info">