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.
 
 
 
 

29 Zeilen
582 B

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