Files
osem/app/controllers/home_controller.rb
2013-07-28 22:37:26 +03:00

7 lines
174 B
Ruby

class HomeController < ApplicationController
def index
@today = Date.current
@current = Conference.where("end_date >= ?", @today).order("start_date ASC")
end
end