diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-25 21:57:39 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-29 09:52:03 +0100 |
commit | 4ca7c78c3a3edabbb7466bfd7d519be83d11a89a (patch) | |
tree | 9d91b16d97d573403dd0164fc5765aadcedfd4fa /templates/web/base/admin/problem_row.html | |
parent | 7fb251eb773782e1b0faccc41b5e2aee8f3db18c (diff) |
Show "Fixed" for fixed states only when warranted.
There were a couple of places where the three fixed states were all
displaying as "Fixed" in a dropdown.
Diffstat (limited to 'templates/web/base/admin/problem_row.html')
-rw-r--r-- | templates/web/base/admin/problem_row.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/admin/problem_row.html b/templates/web/base/admin/problem_row.html index def6ce60f..79461367e 100644 --- a/templates/web/base/admin/problem_row.html +++ b/templates/web/base/admin/problem_row.html @@ -30,7 +30,7 @@ [%- END -%] <br>[% problem.cobrand %]<br>[% problem.cobrand_data | html %] </td> - <td>[% prettify_state(problem.state) %]<br><small> + <td>[% prettify_state(problem.state, 1) %]<br><small> [% loc('Created') %]: [% PROCESS format_time time=problem.created %] <br>[% loc('When sent') %]: [% PROCESS format_time time=problem.whensent %] [%- IF problem.is_visible %]<br>[% loc('Confirmed:' ) %] [% PROCESS format_time time=problem.confirmed %][% END -%] |