@@ -, +, @@ available --- .../en/modules/opac-request-article.tt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-request-article.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-request-article.tt @@ -33,7 +33,15 @@
- [% IF !error_message && biblio.can_article_request( patron ) %] + [% IF error_message %] +

[% biblio.title | html %]

+
+ [% 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 %] +
+ [% ELSIF biblio.can_article_request( patron ) %]

Place article request for [% biblio.title | html %]

[% IF ( disclaimer && !action) %]
@@ -216,14 +224,6 @@ [% END %] - [% ELSIF error_message %] -

[% biblio.title | html %]

-
- [% 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 %] -
[% ELSE %]

[% biblio.title | html %]

--