Bug 15298 - z39.50 admin setup, options column suggested changes
To Test- 1-first look at the orginal Z39.50/SRU servers administration page (/cgi-bin/koha/admin/z3950servers.pl?op=delete_confirmed&id=6) 2-apply patch 3-now see the new styling of the "action" drop down tab like the one on the saved reports page 4-check that each link works (for delete i reccommend copying one then deleting the copy) Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
parent
4369486767
commit
142c47fcf4
1 changed files with 23 additions and 2 deletions
|
@ -219,7 +219,7 @@
|
|||
You searched for [% searchfield %]
|
||||
[% END %]
|
||||
<table id="serverst">
|
||||
<thead><tr><th>Target</th><th>Hostname/Port</th><th>Database</th><th>Userid</th><th>Password</th><th>Preselected</th><th>Rank</th><th>Syntax</th><th>Encoding</th><th>Timeout</th><th>Record type</th><th>Options</th>
|
||||
<thead><tr><th>Target</th><th>Hostname/Port</th><th>Database</th><th>Userid</th><th>Password</th><th>Preselected</th><th>Rank</th><th>Syntax</th><th>Encoding</th><th>Timeout</th><th>Record type</th><th></th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
[% FOREACH loo IN loop %]
|
||||
|
@ -232,7 +232,28 @@
|
|||
<span>Authority</span>
|
||||
[% END %]
|
||||
</td>
|
||||
<td><a href="[% loo.script_name %]?op=edit&id=[% loo.id %]">Edit</a> <a href="[% loo.script_name %]?op=add&id=[% loo.id %]">Copy</a> <a href="javascript:void(0);" onclick="ConfirmDelete('[% loo.servername | replace("['\"]","") %]','[% loo.id %]');">Delete</a></td>
|
||||
<td>
|
||||
<div class="dropdown">
|
||||
|
||||
<a class="btn btn-mini dropdown-toggle" id="reportactions[% savedreport.id %]" role="button" data-toggle="dropdown" href="#">
|
||||
|
||||
Actions <b class="caret"></b>
|
||||
|
||||
</a>
|
||||
|
||||
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="reportactions[% savedreport.id %]">
|
||||
|
||||
<li><a href="[% loo.script_name %]?op=edit&id=[% loo.id %]"><i class="fa fa-pencil"></i> Edit</a></li>
|
||||
|
||||
<li><a href="[% loo.script_name %]?op=add&id=[% loo.id %]"><i class="fa fa-copy"></i> Copy</a></li>
|
||||
|
||||
<li><a href="javascript:void(0);" onclick="ConfirmDelete('[% loo.servername | replace("['\"]","") %]','[% loo.id %]');"><i class="fa fa-remove"></i> Delete</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
[% END %]
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in a new issue