pages_controller.rb 195 Bytes
Newer Older
Galen Evilla's avatar
Galen Evilla committed
1 2 3 4 5 6 7 8 9
class PagesController < ApplicationController
	def index
		@users = User.all
		@votes = Vote.all
		@candidates = Candidate.all
		@positions = Position.all
		render "pages/index.html.erb"
	end
end