View | Details | Raw Unified | Return to bug 11395
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc (+3 lines)
Lines 56-61 Link Here
56
    [% IF ( CAN_user_tools_items_batchmod ) %]
56
    [% IF ( CAN_user_tools_items_batchmod ) %]
57
	<li><a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a></li>
57
	<li><a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a></li>
58
    [% END %]
58
    [% END %]
59
    [% IF CAN_user_tools_records_batchmod %]
60
      <li><a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a></li>
61
    [% END %]
59
    [% IF ( CAN_user_tools_export_catalog ) %]
62
    [% IF ( CAN_user_tools_export_catalog ) %]
60
    <li><a href="/cgi-bin/koha/tools/export.pl">Export data</a></li>
63
    <li><a href="/cgi-bin/koha/tools/export.pl">Export data</a></li>
61
    [% END %]
64
    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt (+10 lines)
Lines 101-106 function placeHold () { Link Here
101
        [% END %]
101
        [% END %]
102
        </ul>
102
        </ul>
103
    </div>
103
    </div>
104
    [% IF CAN_user_tools_records_batchmod %]
105
      <div class="btn-group">
106
        <a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#" id="actioncart"><i class="icon-play"></i> Actions <span class="caret"></span> </a>
107
        <ul class="dropdown-menu">
108
          [% IF CAN_user_tools_records_batchmod %]
109
            <li><a href="/cgi-bin/koha/tools/batch_record_modification.pl?op=list&amp;bib_list=[% bib_list %]&amp;type=biblio">Modify</a></li>
110
          [% END %]
111
        </ul>
112
      </div>
113
    [% END %]
104
    <a class="btn btn-small" href="basket.pl" onclick="printBasket(); return false;"><i class="icon-print"></i> Print</a>
114
    <a class="btn btn-small" href="basket.pl" onclick="printBasket(); return false;"><i class="icon-print"></i> Print</a>
105
    <a class="btn btn-small" href="basket.pl" onclick="delBasket('popup'); return false;"><i class="icon-trash"></i> Empty and close</a>
115
    <a class="btn btn-small" href="basket.pl" onclick="delBasket('popup'); return false;"><i class="icon-trash"></i> Empty and close</a>
106
    <a class="btn btn-small close" href="basket.pl"><i class="icon-remove-sign"></i> Hide window</a>
116
    <a class="btn btn-small close" href="basket.pl"><i class="icon-remove-sign"></i> Hide window</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt (-2 / +6 lines)
Lines 121-127 Link Here
121
    <dt><a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a></dt>
121
    <dt><a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a></dt>
122
    <dd>Modify items in a batch</dd>
122
    <dd>Modify items in a batch</dd>
123
    [% END %]
123
    [% END %]
124
    
124
125
    [% IF CAN_user_tools_records_batchmod %]
126
      <dt><a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a></dt>
127
      <dd>Modify a batch of records (biblios or authorities)</dd>
128
    [% END %]
129
125
    [% IF ( CAN_user_tools_export_catalog ) %]
130
    [% IF ( CAN_user_tools_export_catalog ) %]
126
    <dt><a href="/cgi-bin/koha/tools/export.pl">Export data</a></dt>
131
    <dt><a href="/cgi-bin/koha/tools/export.pl">Export data</a></dt>
127
    <dd>Export bibliographic, holdings, and authority records</dd>
132
    <dd>Export bibliographic, holdings, and authority records</dd>
128
- 

Return to bug 11395