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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/matching-rules.tt (-4 / +9 lines)
Lines 566-572 function CheckRuleForm(f) { Link Here
566
    <th>#</th>
566
    <th>#</th>
567
    <th>Code</th>
567
    <th>Code</th>
568
    <th>Description</th>
568
    <th>Description</th>
569
    <th>Actions</th>
569
    <th>&nbsp;</th>
570
  </tr>
570
  </tr>
571
  [% FOREACH available_matching_rule IN available_matching_rules %]
571
  [% FOREACH available_matching_rule IN available_matching_rules %]
572
  <tr>
572
  <tr>
Lines 574-581 function CheckRuleForm(f) { Link Here
574
    <td>[% available_matching_rule.code %]</td>
574
    <td>[% available_matching_rule.code %]</td>
575
    <td>[% available_matching_rule.description %]</td>
575
    <td>[% available_matching_rule.description %]</td>
576
    <td>
576
    <td>
577
      <a href="[% available_matching_rule.script_name %]?op=edit_matching_rule&amp;matcher_id=[% available_matching_rule.matcher_id |html %]">Edit</a>
577
      <div class="dropdown">
578
      <a href="[% available_matching_rule.script_name %]?op=delete_matching_rule&amp;matcher_id=[% available_matching_rule.matcher_id |html %]">Delete</a>
578
        <a class="btn btn-mini dropdown-toggle" id="matchingrulesactions[% available_matching_rule.matcher_id %]" role="button" data-toggle="dropdown" href="#">
579
          Actions <b class="caret"></b></a>
580
        <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="matchingrulesactions[% available_matching_rule.matcher_id %]">
581
          <li><a href="[% available_matching_rule.script_name %]?op=edit_matching_rule&amp;matcher_id=[% available_matching_rule.matcher_id |html %]"><i class="fa fa-pencil"></i> Edit</a></li>
582
          <li><a href="[% available_matching_rule.script_name %]?op=delete_matching_rule&amp;matcher_id=[% available_matching_rule.matcher_id |html %]"><i class="fa fa-trash"></i> Delete</a></li>
583
        </ul>
584
      </div>
579
    </td>
585
    </td>
580
  </tr>
586
  </tr>
581
  [% END %]
587
  [% END %]
582
- 

Return to bug 15990