diff options
-rw-r--r-- | templates/web/oxfordshire/report/_council_sent_info.html | 27 | ||||
-rw-r--r-- | web/cobrands/oxfordshire/base.scss | 8 |
2 files changed, 15 insertions, 20 deletions
diff --git a/templates/web/oxfordshire/report/_council_sent_info.html b/templates/web/oxfordshire/report/_council_sent_info.html index 8b742cb2e..1dd86c918 100644 --- a/templates/web/oxfordshire/report/_council_sent_info.html +++ b/templates/web/oxfordshire/report/_council_sent_info.html @@ -1,13 +1,16 @@ -[% IF problem.whensent || problem.can_display_external_id %] - <div class="council_info_box"> - [% IF problem.can_display_external_id %] - [% reference = problem.get_extra_metadata('customer_reference') %] - <h3> - [% IF reference %] - [% problem.external_body %] Council ref: [% reference %] - [% END %] - </h3> - [% END %] +[% reference = problem.get_extra_metadata('customer_reference') ~%] +[% feature_id = problem.get_extra_field_value('feature_id') ~%] +[% column_no = problem.get_extra_field_value('column_no') ~%] +[% RETURN UNLESS reference OR feature_id OR column_no %] - </div> -[% END %] +<div class="council_info_box"> + [% IF reference %] + <p><strong>Council ref:</strong> [% reference %]</p> + [% END %] + [% IF feature_id %] + <p><strong>Asset ID:</strong> [% feature_id %]</p> + [% END %] + [% IF column_no %] + <p><strong>Column number:</strong> [% column_no %]</p> + [% END %] +</div> diff --git a/web/cobrands/oxfordshire/base.scss b/web/cobrands/oxfordshire/base.scss index a5f7a43d6..fefbc619e 100644 --- a/web/cobrands/oxfordshire/base.scss +++ b/web/cobrands/oxfordshire/base.scss @@ -152,16 +152,8 @@ dd, p { padding: 1em; margin: 0 -1em -1em -1em; // counteract 1em padding on sidebar without using .full-width which sets an explicit width - h3 { - font-weight: bold; - font-size: 1em; - margin: 0 0 0.5em 0; - } - p { - color: #666; margin: 0 0 0.5em 0; - font-size: 0.9em; } & > :last-child { |