Lines 4-23
Link Here
|
4 |
<div id="toolbar" class="btn-toolbar"> |
4 |
<div id="toolbar" class="btn-toolbar"> |
5 |
[% IF ( CAN_user_editauthorities ) %] |
5 |
[% IF ( CAN_user_editauthorities ) %] |
6 |
<div class="btn-group"> |
6 |
<div class="btn-group"> |
7 |
<a class="btn btn-default dropdown-toggle" data-toggle="dropdown" href="#"> |
7 |
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown"> |
8 |
<i class="fa fa-plus"></i> New authority |
8 |
<i class="fa fa-plus"></i> New authority |
9 |
<span class="caret"></span> |
9 |
<span class="caret"></span> |
10 |
</a> |
10 |
</button> |
11 |
<ul class="dropdown-menu"> |
11 |
<ul class="dropdown-menu"> |
12 |
[% IF servers.count > 0 %] |
|
|
13 |
<li><a id="z3950_new" href="#">New from Z39.50/SRU</a></li> |
14 |
<li role="separator" class="divider"></li> |
15 |
[% END %] |
16 |
[% FOREACH authority_type IN authority_types %] |
12 |
[% FOREACH authority_type IN authority_types %] |
17 |
<li><a href="/cgi-bin/koha/authorities/authorities.pl?authtypecode=[% authority_type.authtypecode | uri %]">[% authority_type.authtypetext | html %]</a></li> |
13 |
<li><a href="/cgi-bin/koha/authorities/authorities.pl?authtypecode=[% authority_type.authtypecode | uri %]">[% authority_type.authtypetext | html %]</a></li> |
18 |
[% END %] |
14 |
[% END %] |
19 |
</ul> |
15 |
</ul> |
20 |
</div> |
16 |
</div> |
|
|
17 |
[% IF servers.count > 0 %] |
18 |
<div class="btn-group"> |
19 |
<button id="z3950_new" class="btn btn-default"> |
20 |
<i class="fa fa-search"></i> New from Z39.50/SRU |
21 |
</button> |
22 |
</div> |
23 |
[% END %] |
21 |
[% END %] |
24 |
[% END %] |
22 |
|
25 |
|
23 |
[% IF ( authid ) %] |
26 |
[% IF ( authid ) %] |
24 |
- |
|
|