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.

app.rb 879 B

il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. require 'rubygems'
  2. require 'sinatra'
  3. require 'sinatra-helpers/haml/partials'
  4. require 'haml'
  5. # require 'pat'
  6. require 'lib/models'
  7. get '/' do
  8. haml :home
  9. end
  10. get '/wards/:id' do
  11. @ward = Ward.get(params[:id])
  12. haml :wards
  13. end
  14. get '/wards' do
  15. @postcode = params[:postcode].strip.upcase
  16. unless result = Postcode.finder(@postcode)
  17. # Invalid postcode
  18. redirect '/error'
  19. end
  20. # Postcode valid but not in LB Sutton
  21. if result.district_code != "00BF"
  22. redirect '/aliens'
  23. end
  24. # Postcode in LB Sutton
  25. @ward = Ward.first( :ons_id => result.ward_code )
  26. haml :wards
  27. end
  28. get '/how-the-council-election-works' do
  29. haml :election
  30. end
  31. get '/how-the-parliament-election-works' do
  32. haml :parliament
  33. end
  34. # get '/voting' do
  35. # haml :voting
  36. # end
  37. get '/error' do
  38. haml :error
  39. end
  40. get '/about' do
  41. haml :about
  42. end
  43. get '/aliens' do
  44. haml :aliens
  45. end