osem-fcy/app/controllers/schedule_controller.rb

14 lines
327 B
Ruby
Raw Normal View History

class ScheduleController < ApplicationController
layout "application"
caches_page :index
def index
@conference = Conference.find_all_by_short_title(params[:conference_id]).first
@events = @conference.events
@dates = @conference.start_date..@conference.end_date
@rooms = @conference.rooms
end
end