rebranded from votingbooth to hyperchad
[selectricity] / app / controllers / site_controller.rb
index 6e77b48ef02835d4a176c8c2af24c852e37d0d6a..daa74f8cb866feaa7050999a026896d93457b79f 100644 (file)
@@ -1,6 +1,14 @@
 class SiteController < ApplicationController
-  layout 'vb'
+  layout 'hc'
+  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?