diff options
-rw-r--r-- | templates/web/fixmystreet-uk-councils/report/new/unresponsive_body.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/web/fixmystreet-uk-councils/report/new/unresponsive_body.html b/templates/web/fixmystreet-uk-councils/report/new/unresponsive_body.html new file mode 100644 index 000000000..80c8cc138 --- /dev/null +++ b/templates/web/fixmystreet-uk-councils/report/new/unresponsive_body.html @@ -0,0 +1,20 @@ +[% +SET first = body_id.keys.first; # Might be more than one, but showing one will do +SET soon = bodies.$first.name == 'Northamptonshire County Council' %] +<div class="box-warning"> + <h1>Important message</h1> + <p> + <span class="unresponsive-council">[% bodies.$first.name %]</span> doesn’t currently accept + [% IF soon %] + FixMyStreet reports – though it will do so soon. + [% ELSE %] + [% IF category %] + <span class="refused-category">[% category | html %]</span> + [% END %] + reports from third party reporting sites such as FixMyStreet. + [% END %] + </p> + <p>We can make your report public, but [% 'at the moment' IF soon %] we can’t send it to + [% IF bodies.size > 1 %] that [% ELSE %] the [% END %] council.</p> + <a href="https://www.fixmystreet.com/unresponsive?body=[% first %][% IF category %];category=[% category | uri %][% END %]" class="btn">[% soon ? 'Find out more' : 'What can I do instead?' %]</a> +</div> |