Bug 29271: Fix cash register report results
[koha.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">Patron not found. <a href="/cgi-bin/koha/members/members-home.pl">Return to search</a></div>
5     [% CASE 'cannot_see_patron_infos' %]This account cannot view requested patron information.
6     [% CASE 'unknown_biblio' %]
7         <div class="dialog message">Bibliographic record not found.</div>
8     [% CASE 'unknown_item' %]
9         <div class="dialog message">Item not found.</div>
10     [% CASE 'unknown_subscription' %]
11         <div class="dialog message">Subscription not found.</div>
12     [% CASE 'unknown_basket' %]
13         <div class="dialog message">Basket not found.</div>
14     [% CASE 'unknown_vendor' %]
15         <div class="dialog message">Vendor not found.</div>
16     [% CASE 'order_cannot_be_edited' %]
17         <div class="dialog message">This order cannot be edited, the basket is closed.</div>
18     [% CASE 'wrong_csrf_token' %]
19         <div class="dialog message">The form submission failed (Wrong CSRF token). Try to come back, refresh the page, then try again.</div>
20     [% CASE 'budget_is_locked' %]
21         <div class="dialog message">The budget is locked, fund creation is not possible.</div>
22     [% CASE 'missing_es_modules' %]
23         <div class="dialog message">Necessary Elasticsearch packages are not installed on your server. Please contact your server admin if you wish to configure Elasticsearch</div>
24     [% CASE 'insufficient_permission' %]
25         <div class="dialog message">You do not have sufficient permission to continue.</div>
26     [% CASE %][% blocking_error | html %]
27     [% END %]
28
29     [% INCLUDE 'intranet-bottom.inc' %]
30     [% STOP %] [%# Will stop gracefully without processing any more of the template document.%]
31 [% END %]