Election results in the London Borough of Sutton.
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- %h1= @page_title = @body.name
-
- %h2 Elections
-
- %table
- %thead
- %tr
- %th
- %th
- %th turnout
- - @elections.each do |election|
- %tr
- %td
- %a{ :href => "/bodies/#{@body.slug}/elections/#{election.d}" }<
- = short_date(election.d)
- %td
- = election.kind
- %td.right
- - if election.turnout_percent
- = format_percent(election.turnout_percent)
-
- %h2
- = @body.districts_name.capitalize
-
- - @districts.each do |district|
- %p
- %a{ :href => "/bodies/#{@body.slug}/#{@body.districts_name}/#{district.slug}" }
- = district.name
|