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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt (-8 / +7 lines)
Lines 145-154 $(document).ready(function() { Link Here
145
    [% IF records %]
145
    [% IF records %]
146
      [% IF recordtype == 'biblio' %]
146
      [% IF recordtype == 'biblio' %]
147
        <div id="toolbar">
147
        <div id="toolbar">
148
          <a id="selectall" href="#">Select all</a>
148
          <a id="selectall" href="#"><i class="fa fa-check"></i> Select all</a>
149
          | <a id="clearall" href="#">Clear all</a>
149
          | <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a>
150
          | <a id="selectwithoutitems" href="#">Select without items</a>
150
          | <a id="selectwithoutitems" href="#"><i class="fa fa-check"></i><i class="fa fa-book fa-fw"></i>Select without items</a>
151
          | <a id="selectnotreserved" href="#">Select without holds</a>
151
          | <a id="selectnotreserved" href="#"><i class="fa fa-check"></i><i class="fa fa-sticky-note-o"></i> Select without holds</a>
152
        </div>
152
        </div>
153
        <form action="/cgi-bin/koha/tools/batch_delete_records.pl" method="post">
153
        <form action="/cgi-bin/koha/tools/batch_delete_records.pl" method="post">
154
          <table id="biblios" class="records">
154
          <table id="biblios" class="records">
Lines 178-186 $(document).ready(function() { Link Here
178
          <div class="note"><i class="fa fa-exclamation"></i> Reminder: this action will delete all selected bibliographic records, attached subscriptions, existing holds, and attached items!</div>
178
          <div class="note"><i class="fa fa-exclamation"></i> Reminder: this action will delete all selected bibliographic records, attached subscriptions, existing holds, and attached items!</div>
179
      [% ELSE %]
179
      [% ELSE %]
180
        <div id="toolbar">
180
        <div id="toolbar">
181
          <a id="selectall" href="#">Select all</a>
181
          <a id="selectall" href="#"><i class="fa fa-check"></i> Select all</a>
182
          | <a id="clearall" href="#">Clear all</a>
182
          | <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a>
183
          | <a id="clearlinkedtobiblio" href="#">Clear used authorities</a>
183
          | <a id="clearlinkedtobiblio" href="#"><i class="fa fa-remove"></i><i class="fa fa-bars"></i> Clear used authorities</a>
184
        </div>
184
        </div>
185
        <form action="/cgi-bin/koha/tools/batch_delete_records.pl" method="post">
185
        <form action="/cgi-bin/koha/tools/batch_delete_records.pl" method="post">
186
          <table id="authorities" class="records">
186
          <table id="authorities" class="records">
187
- 

Return to bug 16438