Merge pull request #2913 from AndrewKvalheim/schedule-alphabetize-rooms
Order rooms by name in the schedule
This commit is contained in:
commit
4a168366c3
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ class SchedulesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
format.html do
|
format.html do
|
||||||
@rooms = @conference.venue.rooms if @conference.venue
|
@rooms = @conference.venue.rooms.order(:name) if @conference.venue
|
||||||
@dates = @conference.start_date..@conference.end_date
|
@dates = @conference.start_date..@conference.end_date
|
||||||
@step_minutes = @program.schedule_interval.minutes
|
@step_minutes = @program.schedule_interval.minutes
|
||||||
@conf_start = @conference.start_hour
|
@conf_start = @conference.start_hour
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue