mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
* Consistent route/model/controller/view layout * Get rid of unused photos, speakers, dietchoices, social_events controllers * Drop unused :public from Rooms and :description from CallForPapers
20 lines
1 KiB
Text
20 lines
1 KiB
Text
.row
|
|
.col-md-12
|
|
.page-header
|
|
%h1 Splashpage
|
|
.row
|
|
.col-md-8
|
|
= semantic_form_for(@splashpage, url: admin_conference_splashpage_path(@conference.short_title)) do |f|
|
|
= f.inputs name: 'Components' do
|
|
= f.input :include_tracks, label: 'Display tracks on the splashpage?'
|
|
= f.input :include_program, label: 'Display program on the splashpage?'
|
|
= f.input :include_venue, label: 'Display venue on the splashpage?'
|
|
= f.input :include_registrations, label: 'Display the registration period on the splashpage?'
|
|
= f.input :include_tickets, label: 'Display tickets on the splashpage?'
|
|
= f.input :include_lodgings, label: 'Display the lodgings on the splashpage?'
|
|
= f.input :include_sponsors, label: 'Display sponsors on the splashpage?'
|
|
= f.input :include_social_media, label: 'Display social media on the splashpage?'
|
|
= f.inputs name: 'Access' do
|
|
= f.input :public, label: 'Make splash page public?'
|
|
%p.text-right
|
|
= f.submit 'Save Splashpage', class: 'btn btn-primary'
|