diff options
-rw-r--r-- | templates/web/default/around/around_map_list_items.html | 2 | ||||
-rw-r--r-- | templates/web/default/around/on_map_list_items.html | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/templates/web/default/around/around_map_list_items.html b/templates/web/default/around/around_map_list_items.html index e248ce3ed..f598a9ba9 100644 --- a/templates/web/default/around/around_map_list_items.html +++ b/templates/web/default/around/around_map_list_items.html @@ -8,6 +8,8 @@ <small>[% prettify_epoch( p.problem.confirmed_local.epoch, 1 ) %], [% dist %]km</small> [% IF p.problem.is_fixed %] <small>[% loc('(fixed)') %]</small> + [% ELSIF p.problem.is_closed %] + <small>[% loc('(closed)') %]</small> [% END %] </li> [% END %] diff --git a/templates/web/default/around/on_map_list_items.html b/templates/web/default/around/on_map_list_items.html index 245be7190..e0f8eea08 100644 --- a/templates/web/default/around/on_map_list_items.html +++ b/templates/web/default/around/on_map_list_items.html @@ -5,6 +5,8 @@ <small>[% prettify_epoch( p.confirmed_local.epoch, 1 ) %]</small> [% IF p.is_fixed %] <small>[% loc('(fixed)') %]</small> + [% ELSIF p.is_closed %] + <small>[% loc('(closed)') %]</small> [% END %] </li> [% END %] |