diff options
-rw-r--r-- | templates/web/base/reports/_list-filters.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/web/base/reports/_list-filters.html b/templates/web/base/reports/_list-filters.html index f4fbab042..cda5a3dc2 100644 --- a/templates/web/base/reports/_list-filters.html +++ b/templates/web/base/reports/_list-filters.html @@ -1,14 +1,14 @@ [% select_status = BLOCK %] - <select class="form-control" name="status" id="statuses" multiple data-all="[% loc('all reports') %]"> - <option value="open"[% ' selected' IF filter_status.open %]>[% loc('unfixed reports') %]</option> - <option value="closed"[% ' selected' IF filter_status.closed %]>[% loc('closed reports') %]</option> - <option value="fixed"[% ' selected' IF filter_status.fixed %]>[% loc('fixed reports') %]</option> + <select class="form-control" name="status" id="statuses" multiple data-all="[% loc('All reports') %]"> + <option value="open"[% ' selected' IF filter_status.open %]>[% loc('Unfixed reports') %]</option> + <option value="closed"[% ' selected' IF filter_status.closed %]>[% loc('Closed reports') %]</option> + <option value="fixed"[% ' selected' IF filter_status.fixed %]>[% loc('Fixed reports') %]</option> </select> [% END %] [% select_category = BLOCK %] [% IF filter_categories.size %] - <select class="form-control" name="filter_category" id="filter_categories" multiple data-all="[% loc('everything') %]"> + <select class="form-control" name="filter_category" id="filter_categories" multiple data-all="[% loc('Everything') %]"> [% FOR cat IN filter_categories %] <option value="[% cat | html %]"[% ' selected' IF filter_category.grep(cat).size %]> [% cat | html %] @@ -16,7 +16,7 @@ [% END %] </select> [% ELSE %] - [% loc('everything') %] + [% loc('Everything') %] [% END %] [% END %] |