|
Lines 17-22
Link Here
|
| 17 |
[% END %] |
17 |
[% END %] |
| 18 |
|
18 |
|
| 19 |
[% BLOCK detail %] |
19 |
[% BLOCK detail %] |
|
|
20 |
[% FOR m IN job.messages %] |
| 21 |
<div class="dialog message"> |
| 22 |
[% IF m.type == 'success' %] |
| 23 |
<i class="fa fa-check success"></i> |
| 24 |
[% ELSIF m.type == 'warning' %] |
| 25 |
<i class="fa fa-warning warn"></i> |
| 26 |
[% ELSIF m.type == 'error' %] |
| 27 |
<i class="fa fa-exclamation error"></i> |
| 28 |
[% END %] |
| 29 |
[% SWITCH m.code %] |
| 30 |
[% CASE 'index_error' %] |
| 31 |
Something went wrong during the indexation process: [% m.error | html %] |
| 32 |
[% END %] |
| 33 |
</div> |
| 34 |
[% END %] |
| 20 |
[% END %] |
35 |
[% END %] |
| 21 |
|
36 |
|
| 22 |
[% BLOCK js %] |
37 |
[% BLOCK js %] |
| 23 |
- |
|
|