diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2015-03-27 13:55:09 +0000 |
---|---|---|
committer | Steven Day <steve@mysociety.org> | 2015-06-29 12:43:00 +0100 |
commit | 8f3d63ae2c35d27b1ff8fe875b9fb6affadb0b57 (patch) | |
tree | 8a8b62b6783e9f5d2cbd0fb10ed3cb191ad9e100 /templates/web/base/report/_main.html | |
parent | a872be3a1a85c6ac81d8c3b68ca47562bb912e69 (diff) |
Simpler report meta information display
Removes the italics, and breaks the wording into two
separate paragraphs, at the top of the report page.
Diffstat (limited to 'templates/web/base/report/_main.html')
-rw-r--r-- | templates/web/base/report/_main.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/web/base/report/_main.html b/templates/web/base/report/_main.html index 00b0188af..a7aafb6d0 100644 --- a/templates/web/base/report/_main.html +++ b/templates/web/base/report/_main.html @@ -52,18 +52,19 @@ </div> [% END %] - <p><em> - [% problem.meta_line(c) | html %] - [%- IF !problem.used_map AND c.cobrand.moniker != 'emptyhomes' %]; <strong>[% loc('there is no pin shown as the user did not use the map') %]</strong>[% END %] + <p class="report_meta_info"> + [% problem.meta_line(c) | html %] + [%- IF !problem.used_map AND c.cobrand.moniker != 'emptyhomes' %]; <strong>([% loc('there is no pin shown as the user did not use the map') %])</strong>[% END %] + </p> [% IF problem.bodies_str %] [% INCLUDE 'report/_council_sent_info.html' %] [% ELSE %] - <br><small>[% loc('Not reported to council') %]</small> + <p class="council_sent_info">[% loc('Not reported to council') %]</p> [% END %] [% mlog = problem.latest_moderation_log_entry(); IF mlog %] - <br /> Moderated by [% mlog.user.from_body.name %] at [% prettify_dt(mlog.whenedited) %] + <p>Moderated by [% mlog.user.from_body.name %] at [% prettify_dt(mlog.whenedited) %]</p> [% END %] - </em></p> + [% INCLUDE 'report/_support.html' %] [% INCLUDE 'report/photo.html' object=problem %] |