Working on a step-by-step workflow audit.
[selectricity] / app / controllers / site_controller.rb
index 6e77b48ef02835d4a176c8c2af24c852e37d0d6a..8d2f8b2a63c46a719efac7da711c7ad646f7e458 100644 (file)
@@ -1,6 +1,12 @@
 class SiteController < ApplicationController
   layout 'vb'
+  model :user, :election
 
   def index
+    @current_elections = session[:user].elections.sort do |a,b|
+      b.enddate <=> a.enddate
+    end
+
+    
   end
 end

Benjamin Mako Hill || Want to submit a patch?