Election results in the London Borough of Sutton.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

33 lignes
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