diff options
Diffstat (limited to 'templates/web/default')
-rw-r--r-- | templates/web/default/alert/list.html | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/templates/web/default/alert/list.html b/templates/web/default/alert/list.html index 3aeabf2b5..a839d58d6 100644 --- a/templates/web/default/alert/list.html +++ b/templates/web/default/alert/list.html @@ -42,8 +42,8 @@ [% loc("Or you can subscribe to an alert based upon what ward or council you’re in:") %] </p> - [% IF two_tier_council %] - <div id="rss_feed"> + [% IF reported_to_options %] + <div id="rss_list"> <p><strong> [% loc('Problems within the boundary of:') %] </strong></p> @@ -58,11 +58,35 @@ <input type="radio" name="feed" id="[% option.id %]" value="[% option.id %]"> <label for="[% option.id %]">[% option.text %]</label> <a href="[% option.uri %]"><img src="/i/feed.png" width="16" height="16" -title="RSS feed of [% option.text %]" alt="RSS feed" border="0"></a> +title="[% option.rss_text %]" alt="RSS feed" border="0"></a> </li> [% END %] </ul> + [% IF reported_to_options %] + <p><strong> + [% loc('Or problems reported to:') %] + </strong></p> + <ul> + [% FOREACH option IN reported_to_options %] + <li> + <input type="radio" name="feed" id="[% option.id %]" value="[% option.id %]"> + <label for="[% option.id %]">[% option.text %]</label> + <a href="[% option.uri %]"><img src="/i/feed.png" width="16" height="16" + title="[% option.rss_text %]" alt="RSS feed" border="0"></a> + </li> + [% END %] + </ul> + <p><small> + [% loc( 'FixMyStreet sends different categories of problem +to the appropriate council, so problems within the boundary of a particular council +might not match the problems sent to that council. For example, a graffiti report +will be sent to the district council, so will appear in both of the district +council’s alerts, but will only appear in the "Within the boundary" alert +for the county council.' ) %] + </small></p> </div> +<div id="rss_buttons"> + [% END %] [%# FIXME rss options here %] |