c73470694b4319837607f671d43512b2532d5d95
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / includes / blocking_errors.inc
1 [% IF blocking_error %]
2     [% SWITCH blocking_error %]
3     [% CASE 'unknown_patron' %]
4         <div class="dialog message">This patron does not exist. <a href="/cgi-bin/koha/members/members-home.pl">Find another patron?</a></div>
5     [% CASE 'cannot_see_patron_infos' %]You are not allowed to see the information of this patron.
6     [% CASE 'unknown_biblio' %]
7         <div class="dialog message">This bibliographic record does not exist.</div>
8     [% CASE 'unknown_item' %]
9         <div class="dialog message">This item does not exist.</div>
10     [% CASE 'unknown_subscription' %]
11         <div class="dialog message">This subscription does not exist.</div>
12     [% CASE 'unknown_basket' %]
13         <div class="dialog message">This basket does not exist.</div>
14     [% CASE 'wrong_csrf_token' %]
15         <div class="dialog message">The form submission failed (Wrong CSRF token). Try to come back, refresh the page, then try again.</div>
16     [% CASE %][% blocking_error | html %]
17     [% END %]
18
19     [% INCLUDE 'intranet-bottom.inc' %]
20     [% STOP %] [%# Will stop gracefully without processing any more of the template document.%]
21 [% END %]