Election results in the London Borough of Sutton.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

body.haml 666 B

1234567891011121314151617181920212223242526272829303132
  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