diff options
-rw-r--r-- | templates/web/base/around/_on_map_empty.html | 1 | ||||
-rw-r--r-- | templates/web/base/around/on_map_list_items.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/templates/web/base/around/_on_map_empty.html b/templates/web/base/around/_on_map_empty.html new file mode 100644 index 000000000..baa80f440 --- /dev/null +++ b/templates/web/base/around/_on_map_empty.html @@ -0,0 +1 @@ +<p>[% loc('There are no reports to show.') %]</p> diff --git a/templates/web/base/around/on_map_list_items.html b/templates/web/base/around/on_map_list_items.html index dddaf6341..0f63f2637 100644 --- a/templates/web/base/around/on_map_list_items.html +++ b/templates/web/base/around/on_map_list_items.html @@ -17,7 +17,7 @@ [% IF c.get_param('js') %] <p>[% loc('Loading reports…') %]</p> [% ELSE %] - <p>[% loc('There are no reports to show.') %]</p> + [% PROCESS 'around/_on_map_empty.html' %] [% END %] </li> [% END %] |