Bug 13618: Remove html filter for STOP and deal with existing USE raw
[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">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 %][% blocking_error | html %]
11     [% END %]
12
13     [% INCLUDE 'intranet-bottom.inc' %]
14     [% STOP %] [%# Will stop gracefully without processing any more of the template document.%]
15 [% END %]