@@ -, +, @@ --- .../background_jobs/update_elastic_index.inc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/update_elastic_index.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/update_elastic_index.inc @@ -17,6 +17,21 @@ [% END %] [% BLOCK detail %] + [% FOR m IN job.messages %] +
+ [% IF m.type == 'success' %] + + [% ELSIF m.type == 'warning' %] + + [% ELSIF m.type == 'error' %] + + [% END %] + [% SWITCH m.code %] + [% CASE 'index_error' %] + Something went wrong during the indexation process: [% m.error | html %] + [% END %] +
+ [% END %] [% END %] [% BLOCK js %] --