Lines 49-55
Link Here
|
49 |
<main> |
49 |
<main> |
50 |
|
50 |
|
51 |
[% FOR m IN messages %] |
51 |
[% FOR m IN messages %] |
52 |
<div class="dialog [% m.type %]"> |
52 |
<div class="dialog [% m.type | html %]"> |
53 |
[% SWITCH m.code %] |
53 |
[% SWITCH m.code %] |
54 |
[% CASE 'error_on_update_source' %] |
54 |
[% CASE 'error_on_update_source' %] |
55 |
An error occurred when updating this classification source. |
55 |
An error occurred when updating this classification source. |
Lines 88-94
Link Here
|
88 |
[% CASE 'success_on_delete_split_rule' %] |
88 |
[% CASE 'success_on_delete_split_rule' %] |
89 |
Splitting rule deleted successfully. |
89 |
Splitting rule deleted successfully. |
90 |
[% CASE %] |
90 |
[% CASE %] |
91 |
[% m.code %] |
91 |
[% m.code | html %] |
92 |
[% END %] |
92 |
[% END %] |
93 |
</div> |
93 |
</div> |
94 |
[% END %] |
94 |
[% END %] |
Lines 189-195
Link Here
|
189 |
[% IF routine_name == sort_rule.sort_routine %] |
189 |
[% IF routine_name == sort_rule.sort_routine %] |
190 |
<option value="[% routine_name | html %]" selected="selected">[% routine_name | html %]</option> |
190 |
<option value="[% routine_name | html %]" selected="selected">[% routine_name | html %]</option> |
191 |
[% ELSE %] |
191 |
[% ELSE %] |
192 |
<option value="[% routine_name | html %]">[% routine_name %]</option> |
192 |
<option value="[% routine_name | html %]">[% routine_name | html %]</option> |
193 |
[% END %] |
193 |
[% END %] |
194 |
[% END %] |
194 |
[% END %] |
195 |
</select> |
195 |
</select> |
196 |
- |
|
|