Election results in the London Borough of Sutton.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 lines
666 B

  1. %nav
  2. %a{ :href => "/bodies" }
  3. « Government bodies
  4. %h1= @page_title = @body.name
  5. %h2 Elections
  6. %table
  7. %thead
  8. %tr
  9. %th
  10. %th
  11. %th turnout
  12. - @elections.each do |election|
  13. %tr
  14. %td
  15. %a{ :href => "/bodies/#{@body.slug}/elections/#{election.d}" }<
  16. = short_date(election.d)
  17. %td
  18. = election.kind
  19. %td.right
  20. - if election.turnout_percent
  21. = format_percent(election.turnout_percent)
  22. %h2
  23. = @body.districts_name.capitalize
  24. - @districts.each do |district|
  25. %p
  26. %a{ :href => "/bodies/#{@body.slug}/#{@body.districts_name}/#{district.slug}" }
  27. = district.name