Lines 1-32
Link Here
|
1 |
[% USE raw %] |
1 |
[% USE raw %] |
2 |
[% SET footerjs = 1 %] |
2 |
[% SET footerjs = 1 %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
4 |
<title>[% IF ( plugin_title ) %][% plugin_title | html %] › [% END %]Plugins › Tools › Koha </title> |
4 |
[% IF ( ! method ) %] |
|
|
5 |
[% method = 'tool'; %] |
6 |
[% END %] |
7 |
<title> |
8 |
[% IF ( plugin_title ) %][% plugin_title | html %] › [% END %] |
9 |
Plugins › |
10 |
[% IF ( method == 'tool' ) %] |
11 |
Tools |
12 |
[% ELSE %] |
13 |
Administration |
14 |
[% END %] |
15 |
› Koha |
16 |
</title> |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
17 |
[% INCLUDE 'doc-head-close.inc' %] |
6 |
</head> |
18 |
</head> |
7 |
<body id="plugins_run_tool" class="plugins"> |
|
|
8 |
|
19 |
|
9 |
[% INCLUDE 'header.inc' %] |
20 |
<body id="plugins_run_tool" class="plugins"> |
10 |
[% INCLUDE 'prefs-admin-search.inc' %] |
21 |
[% WRAPPER 'header.inc' %] |
|
|
22 |
[% INCLUDE 'prefs-admin-search.inc' %] |
23 |
[% END %] |
11 |
|
24 |
|
12 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
25 |
[% WRAPPER 'sub-header.inc' %] |
13 |
<ol> |
26 |
[% WRAPPER breadcrumbs %] |
14 |
<li> |
27 |
[% WRAPPER breadcrumb_item %] |
15 |
<a href="/cgi-bin/koha/mainpage.pl">Home</a> |
28 |
[% IF ( method == 'tool' ) %] |
16 |
</li> |
29 |
<a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> |
17 |
<li> |
30 |
[% ELSE %] |
18 |
<a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> |
31 |
<a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> |
19 |
</li> |
32 |
[% END %] |
20 |
<li> |
33 |
[% END %] |
|
|
34 |
[% WRAPPER breadcrumb_item %] |
21 |
<a href="/cgi-bin/koha/plugins/plugins-home.pl">Plugins</a> |
35 |
<a href="/cgi-bin/koha/plugins/plugins-home.pl">Plugins</a> |
22 |
</li> |
36 |
[% END %] |
23 |
<li> |
37 |
[% WRAPPER breadcrumb_item bc_active= 1 %] |
24 |
<a href="#" aria-current="page"> |
38 |
<span>[% IF ( plugin_title ) %][% plugin_title | html %][% ELSE %]Plugin[% END %]</span> |
25 |
[% IF ( plugin_title ) %][% plugin_title | html %][% ELSE %]Plugin[% END %] |
39 |
[% END %] |
26 |
</a> |
40 |
[% END #/ WRAPPER breadcrumbs %] |
27 |
</li> |
41 |
[% END #/ WRAPPER sub-header.inc %] |
28 |
</ol> |
|
|
29 |
</nav> |
30 |
|
42 |
|
31 |
<div class="main container-fluid"> |
43 |
<div class="main container-fluid"> |
32 |
<div class="row"> |
44 |
<div class="row"> |
Lines 38-44
Link Here
|
38 |
|
50 |
|
39 |
<div class="col-sm-2 col-sm-pull-10"> |
51 |
<div class="col-sm-2 col-sm-pull-10"> |
40 |
<aside> |
52 |
<aside> |
41 |
[% INCLUDE 'tools-menu.inc' %] |
53 |
[% IF ( method == 'tool' ) %] |
|
|
54 |
[% INCLUDE 'tools-menu.inc' %] |
55 |
[% ELSE %] |
56 |
[% INCLUDE 'admin-menu.inc' %] |
57 |
[% END %] |
42 |
</aside> |
58 |
</aside> |
43 |
</div> <!-- /.col-sm-2.col-sm-pull-10 --> |
59 |
</div> <!-- /.col-sm-2.col-sm-pull-10 --> |
44 |
</div> <!-- /.row --> |
60 |
</div> <!-- /.row --> |
45 |
- |
|
|