First version of the non-js schedule. Removed the assets from version control.

This commit is contained in:
Henne Vogelsang 2013-06-19 13:58:48 +02:00 committed by Henne Vogelsang
parent 73013bd3e6
commit b2f8cfbec3
87 changed files with 127 additions and 200 deletions

View file

@ -0,0 +1,12 @@
class ScheduleController < ApplicationController
layout "application"
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