Bug 31694: Add missing TT filters
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
e9c7f84896
commit
47ffdaf6f4
1 changed files with 5 additions and 5 deletions
|
@ -255,7 +255,7 @@
|
|||
[% IF rule.filter != "*" %]
|
||||
[% Categories.GetName( rule.filter ) | html %]
|
||||
[% ELSE %]
|
||||
[% rule.filter %]
|
||||
[% rule.filter | html %]
|
||||
[% END %]
|
||||
[% ELSE %]
|
||||
[% rule.filter | html %]
|
||||
|
@ -263,10 +263,10 @@
|
|||
</td>
|
||||
<td>[% rule.tag | html %]</td>
|
||||
<td class="rule-preset"></td>
|
||||
<td class="rule-operation-action" data-operation="add" data-value="[% rule.add %]">[% IF rule.add %]Add[% ELSE %]Skip[% END %]</td>
|
||||
<td class="rule-operation-action" data-operation="append" data-value="[% rule.append %]">[% IF rule.append %]Append[% ELSE %]Skip[% END %]</td>
|
||||
<td class="rule-operation-action" data-operation="remove" data-value="[% rule.remove %]">[% IF rule.remove %]Remove[% ELSE %]Skip[% END %]</td>
|
||||
<td class="rule-operation-action" data-operation="delete" data-value="[% rule.delete %]">[% IF rule.delete %]Delete[% ELSE %]Skip[% END %]</td>
|
||||
<td class="rule-operation-action" data-operation="add" data-value="[% rule.add | html %]">[% IF rule.add %]Add[% ELSE %]Skip[% END %]</td>
|
||||
<td class="rule-operation-action" data-operation="append" data-value="[% rule.append | html %]">[% IF rule.append %]Append[% ELSE %]Skip[% END %]</td>
|
||||
<td class="rule-operation-action" data-operation="remove" data-value="[% rule.remove | html %]">[% IF rule.remove %]Remove[% ELSE %]Skip[% END %]</td>
|
||||
<td class="rule-operation-action" data-operation="delete" data-value="[% rule.delete | html %]">[% IF rule.delete %]Delete[% ELSE %]Skip[% END %]</td>
|
||||
<td class="actions">
|
||||
<a href="?op=remove&id=[% rule.id | uri %]" title="Delete" class="btn btn-default btn-xs"><i class="fa fa-trash-can"></i> Delete</a>
|
||||
<a href="?op=edit&id=[% rule.id | uri %]" title="Edit" class="btn btn-default btn-xs"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a>
|
||||
|
|
Loading…
Reference in a new issue