From eb76a64a2f3c3aeee261474d6aeb2543018a35d2 Mon Sep 17 00:00:00 2001 From: Adrian Short Date: Fri, 28 Dec 2012 23:52:52 +0000 Subject: [PATCH] Add space between election kind and date --- views/electionsummary.haml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/views/electionsummary.haml b/views/electionsummary.haml index dc2f515..cc5dd46 100644 --- a/views/electionsummary.haml +++ b/views/electionsummary.haml @@ -13,8 +13,9 @@ - unless @election_index == 0 - @previous_election = @elections_for_this_body[@election_index - 1] %a{ :href => "/bodies/#{@election.body.slug}/elections/#{@previous_election.d}", :title => "Previous #{@election.body.name} election" }< - «  - = @previous_election.kind + « + = @previous_election.kind +   = short_date(@previous_election.d)     @@ -22,6 +23,7 @@ - @next_election = @elections_for_this_body[@election_index + 1] %a{ :href => "/bodies/#{@election.body.slug}/elections/#{@next_election.d}", :title => "Next #{@election.body.name} election" }< = @next_election.kind +   = short_date(@next_election.d) »