2013-06-19 13:58:48 +02:00
|
|
|
class ScheduleController < ApplicationController
|
|
|
|
|
|
|
|
|
|
layout "application"
|
2013-06-19 20:56:37 +02:00
|
|
|
caches_page :index
|
|
|
|
|
|
2013-06-19 13:58:48 +02:00
|
|
|
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
|