Renamed CSS and layout to move from the old name (HC) to the new name
[selectricity] / app / controllers / voter_controller.rb
index 252711830ac96f7796062b7ab523cf391ed1eab3..779e83f15aa8bc6eb8862fc0420e34685d241112 100644 (file)
@@ -1,4 +1,5 @@
 class VoterController < ApplicationController
+  layout 'main'
   model :voter
   model :vote
   model :election
@@ -6,8 +7,8 @@ class VoterController < ApplicationController
   def index
     password = params[:id]
     password = params[:vote][:password] if params[:vote]
-    if @voter = Voter.find_all( [ "password = ?", password ] )[0]
-      render :action => 'vote'
+    if @voter = FullVoter.find_all( [ "password = ?", password ] )[0]
+      render :action => 'fullvote'
     end
   end
   
@@ -40,6 +41,7 @@ class VoterController < ApplicationController
   private
   def authenticate
     password = params[:id]
-    @voter = Voter.find_all( [ "password = ?", password ] )[0]
+    @voter = FullVoter.find_all( [ "password = ?", password ] )[0]
   end
 end
+

Benjamin Mako Hill || Want to submit a patch?