Bug 11395: Add links to the new tool page
This patch adds links in the tool module to the new batch tool and in the basket. Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
8f77bee494
commit
a5a9abd1a0
3 changed files with 18 additions and 0 deletions
|
@ -59,6 +59,9 @@
|
|||
[% IF CAN_user_tools_records_batchdel %]
|
||||
<li><a href="/cgi-bin/koha/tools/batch_delete_records.pl">Batch record deletion</a></li>
|
||||
[% END %]
|
||||
[% IF CAN_user_tools_records_batchmod %]
|
||||
<li><a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a></li>
|
||||
[% END %]
|
||||
[% IF ( CAN_user_tools_export_catalog ) %]
|
||||
<li><a href="/cgi-bin/koha/tools/export.pl">Export data</a></li>
|
||||
[% END %]
|
||||
|
|
|
@ -122,6 +122,16 @@ function batchDelete(){
|
|||
[% END %]
|
||||
</ul>
|
||||
</div>
|
||||
[% IF CAN_user_tools_records_batchmod %]
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#" id="actioncart"><i class="icon-play"></i> Actions <span class="caret"></span> </a>
|
||||
<ul class="dropdown-menu">
|
||||
[% IF CAN_user_tools_records_batchmod %]
|
||||
<li><a href="/cgi-bin/koha/tools/batch_record_modification.pl?op=list&bib_list=[% bib_list %]&type=biblio">Modify</a></li>
|
||||
[% END %]
|
||||
</ul>
|
||||
</div>
|
||||
[% END %]
|
||||
<a class="btn btn-small" href="basket.pl" onclick="printBasket(); return false;"><i class="icon-print"></i> Print</a>
|
||||
<a class="btn btn-small" href="basket.pl" onclick="delBasket('popup'); return false;"><i class="icon-trash"></i> Empty and close</a>
|
||||
<a class="btn btn-small close" href="basket.pl"><i class="icon-remove-sign"></i> Hide window</a>
|
||||
|
|
|
@ -127,6 +127,11 @@
|
|||
<dd>Delete a batch of records (bibliographic or authority)</dd>
|
||||
[% END %]
|
||||
|
||||
[% IF CAN_user_tools_records_batchmod %]
|
||||
<dt><a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a></dt>
|
||||
<dd>Modify a batch of records (biblios or authorities)</dd>
|
||||
[% END %]
|
||||
|
||||
[% IF ( CAN_user_tools_export_catalog ) %]
|
||||
<dt><a href="/cgi-bin/koha/tools/export.pl">Export data</a></dt>
|
||||
<dd>Export bibliographic, holdings, and authority records</dd>
|
||||
|
|
Loading…
Reference in a new issue