A few major changes:
[selectricity] / app / controllers / site_controller.rb
index 6e77b48ef02835d4a176c8c2af24c852e37d0d6a..f2eb15343aa35cae5f29e85fde40e016b805f491 100644 (file)
@@ -1,6 +1,13 @@
 class SiteController < ApplicationController
   layout 'vb'
+  model :user, :election
 
   def index
+    if session[:user]
+      session[:user] = User.find(session[:user].id)
+      @current_elections = session[:user].elections.sort do |a,b|
+        b.enddate <=> a.enddate
+      end
+    end
   end
 end

Benjamin Mako Hill || Want to submit a patch?