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 59-64 Link Here
59
    [% IF CAN_user_tools_records_batchdel %]
59
    [% IF CAN_user_tools_records_batchdel %]
60
      <li><a href="/cgi-bin/koha/tools/batch_delete_records.pl">Batch record deletion</a></li>
60
      <li><a href="/cgi-bin/koha/tools/batch_delete_records.pl">Batch record deletion</a></li>
61
    [% END %]
61
    [% END %]
62
    [% IF CAN_user_tools_records_batchmod %]
63
      <li><a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a></li>
64
    [% END %]
62
    [% IF ( CAN_user_tools_export_catalog ) %]
65
    [% IF ( CAN_user_tools_export_catalog ) %]
63
    <li><a href="/cgi-bin/koha/tools/export.pl">Export data</a></li>
66
    <li><a href="/cgi-bin/koha/tools/export.pl">Export data</a></li>
64
    [% END %]
67
    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt (+10 lines)
Lines 122-127 function batchDelete(){ Link Here
122
        [% END %]
122
        [% END %]
123
        </ul>
123
        </ul>
124
    </div>
124
    </div>
125
    [% IF CAN_user_tools_records_batchmod %]
126
      <div class="btn-group">
127
        <a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#" id="actioncart"><i class="icon-play"></i> Actions <span class="caret"></span> </a>
128
        <ul class="dropdown-menu">
129
          [% IF CAN_user_tools_records_batchmod %]
130
            <li><a href="/cgi-bin/koha/tools/batch_record_modification.pl?op=list&amp;bib_list=[% bib_list %]&amp;type=biblio">Modify</a></li>
131
          [% END %]
132
        </ul>
133
      </div>
134
    [% END %]
125
    <a class="btn btn-small" href="basket.pl" onclick="printBasket(); return false;"><i class="icon-print"></i> Print</a>
135
    <a class="btn btn-small" href="basket.pl" onclick="printBasket(); return false;"><i class="icon-print"></i> Print</a>
126
    <a class="btn btn-small" href="basket.pl" onclick="delBasket('popup'); return false;"><i class="icon-trash"></i> Empty and close</a>
136
    <a class="btn btn-small" href="basket.pl" onclick="delBasket('popup'); return false;"><i class="icon-trash"></i> Empty and close</a>
127
    <a class="btn btn-small close" href="basket.pl"><i class="icon-remove-sign"></i> Hide window</a>
137
    <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 (-1 / +5 lines)
Lines 127-132 Link Here
127
      <dd>Delete a batch of records (bibliographic or authority)</dd>
127
      <dd>Delete a batch of records (bibliographic or authority)</dd>
128
    [% END %]
128
    [% END %]
129
129
130
    [% IF CAN_user_tools_records_batchmod %]
131
      <dt><a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a></dt>
132
      <dd>Modify a batch of records (biblios or authorities)</dd>
133
    [% END %]
134
130
    [% IF ( CAN_user_tools_export_catalog ) %]
135
    [% IF ( CAN_user_tools_export_catalog ) %]
131
    <dt><a href="/cgi-bin/koha/tools/export.pl">Export data</a></dt>
136
    <dt><a href="/cgi-bin/koha/tools/export.pl">Export data</a></dt>
132
    <dd>Export bibliographic, holdings, and authority records</dd>
137
    <dd>Export bibliographic, holdings, and authority records</dd>
133
- 

Return to bug 11395