diff options
-rwxr-xr-x | web/report.cgi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/report.cgi b/web/report.cgi index 01e8cfb0d..4e3bafa35 100755 --- a/web/report.cgi +++ b/web/report.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: report.cgi,v 1.7 2007-05-02 09:58:20 matthew Exp $ +# $Id: report.cgi,v 1.8 2007-05-02 10:02:09 matthew Exp $ use strict; require 5.8.0; @@ -64,11 +64,11 @@ sub main { if (!$one_council) { print $q->p('This is a summary of all reports on this site, select \'show only\' to see the reports for just one council.'); } else { - print $q->p('This is a summary of all reports for one council.'), - $q->ul( - $q->li($q->a({href => NewURL($q, all=>1) }, 'Show more details')), - $q->li($q->a({href => NewURL($q, 'council'=>undef) }, 'Show all councils')) - ); + print $q->p('This is a summary of all reports for one council. You can ', + $q->a({href => NewURL($q, all=>1) }, 'see more details'), + ' or go back and ', + $q->a({href => NewURL($q, all=>undef, council=>undef) }, 'show all councils'), + '.'); } foreach (sort { $areas_info->{$a}->{name} cmp $areas_info->{$b}->{name} } keys %out) { print '<h2>' . $areas_info->{$_}->{name}; |