|
Lines 3-10
Link Here
|
| 3 |
[% USE Koha %] |
3 |
[% USE Koha %] |
| 4 |
[% SET footerjs = 1 %] |
4 |
[% SET footerjs = 1 %] |
| 5 |
[% INCLUDE 'doc-head-open.inc' %] |
5 |
[% INCLUDE 'doc-head-open.inc' %] |
| 6 |
<title>Koha › Administration › Patron restrictions › [% IF op == 'add_form' %][% IF ( restriction ) %]Modify restriction '[% restriction.display_text | html %]'[% ELSE %]New restriction[% END %][% END %] |
6 |
<title>[% IF op == 'add_form' %][% IF ( restriction ) %]Modify restriction '[% restriction.display_text | html %]'[% ELSE %]New restriction[% END %][% END %] |
| 7 |
[% IF op == 'delete_confirm' %]Confirm deletion of restriction '[% restriction.display_text | html %]'[% END %] |
7 |
[% IF op == 'delete_confirm' %]Confirm deletion of restriction '[% restriction.display_text | html %]'[% END %] › Patron restrictions › Administration › Koha |
| 8 |
</title> |
8 |
</title> |
| 9 |
[% INCLUDE 'doc-head-close.inc' %] |
9 |
[% INCLUDE 'doc-head-close.inc' %] |
| 10 |
</head> |
10 |
</head> |
|
Lines 13-22
Link Here
|
| 13 |
[% INCLUDE 'header.inc' %] |
13 |
[% INCLUDE 'header.inc' %] |
| 14 |
[% INCLUDE 'patrons-admin-search.inc' %] |
14 |
[% INCLUDE 'patrons-admin-search.inc' %] |
| 15 |
|
15 |
|
| 16 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › [% IF op == 'add_form' %] <a href="/cgi-bin/koha/admin/restrictions.pl">Patron restrictions</a> › [% IF ( restriction ) %]Modify restriction '[% restriction.display_text | html %]'[% ELSE %]New restriction[% END %][% END %] |
16 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
| 17 |
[% IF op == 'delete_confirm' %] <a href="/cgi-bin/koha/admin/restrictions.pl">Patron restrictions</a> › Confirm deletion of restriction '[% restriction.display_text | html %]'[% END %] |
17 |
<ol> |
| 18 |
[% IF op == 'delete_confirmed' %] <a href="/cgi-bin/koha/admin/categories.pl">Patron restrictions</a> › Restriction deleted[% END %] |
18 |
<li> |
| 19 |
[% IF op == 'list' %]Patron restrictions[% END %]</div> |
19 |
<a href="/cgi-bin/koha/mainpage.pl">Home</a> |
|
|
20 |
</li> |
| 21 |
<li> |
| 22 |
<a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> |
| 23 |
</li> |
| 24 |
<li> |
| 25 |
<a href="/cgi-bin/koha/admin/restrictions.pl">Patron restrictions</a> |
| 26 |
</li> |
| 27 |
|
| 28 |
[% IF op == 'list' %] |
| 29 |
<li> |
| 30 |
<a href="#" aria-current="page"> |
| 31 |
All restrictions |
| 32 |
</a> |
| 33 |
</li> |
| 34 |
[% END %] |
| 35 |
|
| 36 |
[% IF op == 'add_form' %] |
| 37 |
[% IF restriction %] |
| 38 |
<li> |
| 39 |
<a href="#" aria-current="page"> |
| 40 |
Modify restriction '[% restriction.display_text | html %]' |
| 41 |
</a> |
| 42 |
</li> |
| 43 |
[% ELSE %] |
| 44 |
<li> |
| 45 |
<a href="#" aria-current="page"> |
| 46 |
New restriction |
| 47 |
</a> |
| 48 |
</li> |
| 49 |
[% END %] |
| 50 |
[% END %] |
| 51 |
|
| 52 |
[% IF op == 'delete_confirm' %] |
| 53 |
<li> |
| 54 |
<a href="#" aria-current="page"> |
| 55 |
Delete restriction? |
| 56 |
</a> |
| 57 |
</li> |
| 58 |
[% END %] |
| 59 |
</ol> |
| 60 |
</nav> |
| 20 |
|
61 |
|
| 21 |
<div class="main container-fluid"> |
62 |
<div class="main container-fluid"> |
| 22 |
<div class="row"> |
63 |
<div class="row"> |
| 23 |
- |
|
|