@election.user = session[:user]
@election.anonymous = 1
@election.startdate = Time.now
+ @election.type = 'Election'
holder = create_theme_hash
unless holder.values.all? {|v| v.has_value?("")}
def update_general_information
@election = Election.find(params[:id])
-
holder = create_theme_hash
unless holder.values.all? {|v| v.has_value?("")}
unless @election.embed_custom_string
end
end
- #Takes care of uploading custom images -- unnecessarily long, how can I compress?
+ #Takes care of uploading custom images
+ #unnecessarily long, how can I compress?
def add_theme(prefix)
+ holder = create_theme_hash
unless params[:top_bar][:uploaded_data].to_s.empty?
previous = SkinPicture.find(:first,
:conditions => ["filename = ?", @election.embed_custom_string + "top_bar.png"])
:locals => { :page => 'review' }
@election = Election.find(params[:id])
- if @election.type == QuickVote
+ if @election.class == QuickVote
redirect_to(:controller => 'quickvote', :action => 'index', :ident => @election.id)
end
if params.has_key?( :raw_voter_list )
process_incoming_voters( params[:raw_voter_list] )
end
+ @edit = true
@raw_voter_list = RawVoterList.new
end
def delete_voter
- voter = Voter.find( params[:id] )
+ voter = FullVoter.find( params[:id] )
voter.destroy
end