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.

candidate.haml 1.2 KiB

il y a 13 ans
123456789101112131415161718192021222324252627282930313233343536373839
  1. .nav
  2. %a{ :href => "/candidates" }
  3. « All candidates
  4. %h1= @page_title = @candidate.name
  5. %h2 Elections contested
  6. %table
  7. %tr
  8. %th
  9. %th date
  10. %th party
  11. %th body
  12. %th district
  13. %th votes
  14. %th position
  15. %th
  16. - @candidate.candidacies.each do |ccy|
  17. %tr
  18. %td{ :style => "background-color: #{ccy.party.colour}" }  
  19. %td
  20. %a{ :href => "/bodies/#{ccy.election.body.slug}/elections/#{ccy.election.d}" }
  21. = long_date(ccy.election.d)
  22. %td= ccy.party.name
  23. %td
  24. %a{ :href => "/bodies/#{ccy.election.body.slug}" }
  25. = ccy.election.body.name
  26. %td
  27. %a{ :href => "/bodies/#{ccy.election.body.slug}/elections/#{ccy.election.d}/#{ccy.district.body.districts_name}/#{ccy.district.slug}" }
  28. = ccy.district.name
  29. = ccy.district.body.district_name
  30. %td.right= commify(ccy.votes)
  31. %td.right= to_ordinal(ccy.position)
  32. %td= ccy.elected? ? "Elected" : "Not elected"
  33. .warning
  34. This might not be the complete electoral history for this candidate. They might have stood in elections outside Sutton and / or in Sutton elections for which we don't have data.