Election results in the London Borough of Sutton.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

body.haml 666 B

hace 8 años
hace 13 años
hace 13 años
hace 8 años
hace 13 años
hace 13 años
hace 13 años
hace 8 años
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