diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-02-13 12:06:40 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-02-13 12:06:40 +0000 |
commit | be76b91a31a445f87466693968fe7bba3d0abe04 (patch) | |
tree | a9a874a3e4435c1b21e45a60ac2c641691453a23 | |
parent | 13bed0277d167187d8a5e557995f64cbf9d0354d (diff) |
Include extra address in admin if present.
-rw-r--r-- | templates/web/default/admin/report_edit.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/web/default/admin/report_edit.html b/templates/web/default/admin/report_edit.html index cd5072d00..8d0b8df88 100644 --- a/templates/web/default/admin/report_edit.html +++ b/templates/web/default/admin/report_edit.html @@ -22,6 +22,9 @@ [% IF problem.used_map %][% loc('used map') %][% ELSE %][% loc("didn't use map") %][% END %])</li> <li>[% loc('For council(s):') %] [% IF problem.bodies_str %][% problem.bodies_str %][% ELSE %]<em>[% loc('None' ) %]</em>[% END %] ([% loc('other areas:') %] [% problem.areas | remove('^,') | remove( ',$' ) %])</li> +[% IF problem.extra.address %] +<li>[% loc('Property address:') %] [% problem.extra.address | html %]</li> +[% END %] <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', |