diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-04-24 17:13:04 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-04-24 17:49:38 +0100 |
commit | bb5897ce61bf2c813e33b242594f14c73a65c2ed (patch) | |
tree | c71fd901ac84a7d25d65a5b4faf455b771678bf6 | |
parent | 0d3521c5af8a0bbe54e9f6ac06837246c28af054 (diff) |
All reports Bromley wording tweaks.
-rwxr-xr-x | templates/web/default/reports/council.html | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/templates/web/default/reports/council.html b/templates/web/default/reports/council.html index 4eef35dec..d1c2241c7 100755 --- a/templates/web/default/reports/council.html +++ b/templates/web/default/reports/council.html @@ -75,9 +75,23 @@ Its area is now covered by <a href="/reports/Bedford">Bedford Borough Council</a [% ELSIF style == 'new' %] <div class="shadow-wrap"> <ul id="key-tools"[% IF NOT children.size %] class="singleton"[% END %]> - <li><a rel="nofollow" id="key-tool-updates-area" class="feed" href="[% rss_url %]">[% tprintf(loc('Get updates of problems in this %s'), thing) %]</a></li> + <li><a rel="nofollow" id="key-tool-updates-area" class="feed" href="[% rss_url %]">[% + IF c.cobrand.moniker == 'bromley' AND thing == 'council'; + 'Get updates of reports in Bromley'; + ELSIF c.cobrand.moniker == 'bromley'; + 'Get updates of reports in this ward'; + ELSE; + tprintf(loc('Get updates of problems in this %s'), thing); + END + %]</a></li> [% IF children.size %] - <li><a href="#council_wards" id="key-tool-wards" class="chevron">[% loc('Wards of this council') %]</a></li> + <li><a href="#council_wards" id="key-tool-wards" class="chevron">[% + IF c.cobrand.moniker == 'bromley'; + 'View reports by ward'; + ELSE; + loc('Wards of this council'); + END + %]</a></li> [% END %] </ul> </div> |