diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-12-21 17:06:30 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-12-21 17:06:30 +0000 |
commit | 05a1e0a43c3fbf70dbb85eace1216bac0e7f539e (patch) | |
tree | fa0b0db45cb5549a84e5ef682928048587a31ba8 /templates/web/default/admin | |
parent | 2551905e74d26188c61f92323560910238c5dfe8 (diff) |
More correct front-end display of Zurich status mappings.
Diffstat (limited to 'templates/web/default/admin')
-rw-r--r-- | templates/web/default/admin/report_edit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/default/admin/report_edit.html b/templates/web/default/admin/report_edit.html index 5913e05a3..d0b2e0e67 100644 --- a/templates/web/default/admin/report_edit.html +++ b/templates/web/default/admin/report_edit.html @@ -18,7 +18,7 @@ <li><label class="inline" for="state">[% loc('State:') %]</label> <select name="state" id="state"> [% FOREACH state IN [ ['confirmed', loc('Open')], ['investigating', loc('Investigating')], ['planned', loc('Planned')], ['in progress', - loc('In Progress')], ['closed', loc('Closed')], ['fixed', loc('Fixed')], ['fixed - user', + loc('In progress')], ['closed', loc('Closed')], ['fixed', loc('Fixed')], ['fixed - user', loc('Fixed - User')], ['fixed - council', loc('Fixed - Council')], ['hidden', loc('Hidden')], ['partial', loc('Partial')],['unconfirmed',loc('Unconfirmed')] ] %] <option [% 'selected ' IF state.0 == problem.state %] value="[% state.0 %]">[% state.1 %]</option> [% END %] |