Add call for booths in cfp section in conference splashpage(conferences#show),modified after the design changes

This commit is contained in:
kostino 2018-03-17 18:05:06 +02:00 committed by James Mason
parent 7d2afc623d
commit 69de418ccd
7 changed files with 38 additions and 6 deletions

View file

@ -33,6 +33,7 @@ class ConferencesController < ApplicationController
@track_names = @conference.confirmed_tracks.pluck(:name).sort
end
@call_for_tracks = cfps.find { |call| call.cfp_type == 'tracks' }
@call_for_booths = cfps.find { |call| call.cfp_type == 'booths' }
end
if splashpage.include_program
@highlights = @conference.highlighted_events.eager_load(:speakers)