diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-02-08 14:27:14 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-02-08 14:27:14 +0000 |
commit | 29db0da257d6de03158394233fdfddde501ef200 (patch) | |
tree | a828dcde28eecff33805e739b505177055f80c23 /templates | |
parent | 5c20689aaf3d0018182cb457418f5b5bbc399bf7 (diff) |
Show public response on admin page (fixes a17).
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/zurich/admin/report_edit.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/web/zurich/admin/report_edit.html b/templates/web/zurich/admin/report_edit.html index b48d315f1..30416f4c0 100644 --- a/templates/web/zurich/admin/report_edit.html +++ b/templates/web/zurich/admin/report_edit.html @@ -19,7 +19,7 @@ <li><a href="[% c.uri_for_email( '/report', problem.id ) %]">[% loc('View report on site' )%]</a></li> [% IF problem.state == 'fixed - council' OR problem.state == 'closed' %] - <li>[% loc('Details:') %] [% problem.detail | html %] + <li><span class="mock-label">[% loc('Details:') %]</span> [% problem.detail | html %] [% IF problem.extra.original_detail %] <br>[% SET detail_safe = problem.extra.original_detail | html; @@ -165,6 +165,12 @@ $(function(){ </li> </ul> +[% ELSIF problem.state == 'fixed - council' %] + +<p><span class="mock-label">[% loc('Public response:') %]</span> +[% problem.extra.public_response | html %] +</p> + [% END %] <p align="right"> |