|
Lines 1-10
Link Here
|
| 1 |
[% USE raw %] |
1 |
[% USE raw %] |
| 2 |
[% USE Asset %] |
2 |
[% USE Asset %] |
| 3 |
[% USE Koha %] |
3 |
[% USE Koha %] |
|
|
4 |
[% PROCESS 'patron_restrictions.inc' %] |
| 4 |
[% SET footerjs = 1 %] |
5 |
[% SET footerjs = 1 %] |
| 5 |
[% INCLUDE 'doc-head-open.inc' %] |
6 |
[% INCLUDE 'doc-head-open.inc' %] |
| 6 |
<title>[% IF op == 'add_form' %][% IF ( restriction ) %]Modify restriction '[% restriction.display_text | html %]'[% ELSE %]New restriction[% END %][% END %] |
7 |
<title>[% IF op == 'add_form' %][% IF ( restriction ) %]Modify restriction '[% PROCESS restriction_type_description %]'[% ELSE %]New restriction[% END %][% END %] |
| 7 |
[% IF op == 'delete_confirm' %]Confirm deletion of restriction '[% restriction.display_text | html %]'[% END %] › Patron restrictions › Administration › Koha |
8 |
[% IF op == 'delete_confirm' %]Confirm deletion of restriction '[% PROCESS restriction_type_description %]'[% END %] › Patron restrictions › Administration › Koha |
| 8 |
</title> |
9 |
</title> |
| 9 |
[% INCLUDE 'doc-head-close.inc' %] |
10 |
[% INCLUDE 'doc-head-close.inc' %] |
| 10 |
</head> |
11 |
</head> |
|
Lines 37-43
Link Here
|
| 37 |
[% IF restriction %] |
38 |
[% IF restriction %] |
| 38 |
<li> |
39 |
<li> |
| 39 |
<a href="#" aria-current="page"> |
40 |
<a href="#" aria-current="page"> |
| 40 |
Modify restriction '[% restriction.display_text | html %]' |
41 |
Modify restriction '[% PROCESS restriction_type_description %]' |
| 41 |
</a> |
42 |
</a> |
| 42 |
</li> |
43 |
</li> |
| 43 |
[% ELSE %] |
44 |
[% ELSE %] |
|
Lines 85-91
Link Here
|
| 85 |
<input type="hidden" name="op" value="add_validate" /> |
86 |
<input type="hidden" name="op" value="add_validate" /> |
| 86 |
<input type="hidden" name="checked" value="0" /> |
87 |
<input type="hidden" name="checked" value="0" /> |
| 87 |
[% IF restriction %] |
88 |
[% IF restriction %] |
| 88 |
<h1>Modify restriction [% restriction.display_text | html %]</h1> |
89 |
<h1>Modify restriction [% PROCESS restriction_type_description %]</h1> |
| 89 |
<input type="hidden" name="is_a_modif" value="1" /> |
90 |
<input type="hidden" name="is_a_modif" value="1" /> |
| 90 |
[% ELSE %] |
91 |
[% ELSE %] |
| 91 |
<h1>New restriction</h1> |
92 |
<h1>New restriction</h1> |
|
Lines 151-157
Link Here
|
| 151 |
Confirm restriction deletion |
152 |
Confirm restriction deletion |
| 152 |
</legend> |
153 |
</legend> |
| 153 |
|
154 |
|
| 154 |
<p>Are you sure you want to delete "[% restriction.display_text | html %]"</p> |
155 |
<p>Are you sure you want to delete "[% PROCESS restriction_type_description %]"</p> |
| 155 |
|
156 |
|
| 156 |
<fieldset class="action"> |
157 |
<fieldset class="action"> |
| 157 |
<input type="hidden" name="op" value="delete_confirmed" /> |
158 |
<input type="hidden" name="op" value="delete_confirmed" /> |
|
Lines 191-197
Link Here
|
| 191 |
[% restriction.code | html %] |
192 |
[% restriction.code | html %] |
| 192 |
</td> |
193 |
</td> |
| 193 |
<td> |
194 |
<td> |
| 194 |
[% restriction.display_text | html %] |
195 |
[% PROCESS restriction_type_description %] |
| 195 |
</td> |
196 |
</td> |
| 196 |
<td> |
197 |
<td> |
| 197 |
[% IF restriction.can_be_added_manually %]Yes[% END %] |
198 |
[% IF restriction.can_be_added_manually %]Yes[% END %] |
| 198 |
- |
|
|