mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 12:44:03 +00:00
11 lines
438 B
Text
11 lines
438 B
Text
|
|
.row
|
||
|
|
.col-md-12
|
||
|
|
.page-header
|
||
|
|
%h1
|
||
|
|
New Track Schedule
|
||
|
|
.row
|
||
|
|
.col-md-12
|
||
|
|
= semantic_form_for @schedule, url: admin_conference_schedules_path(@conference.short_title) do |f|
|
||
|
|
= f.input :track, collection: Track.accessible_by(current_ability).where(program: @program).self_organized.confirmed.pluck(:name, :id), include_blank: false
|
||
|
|
= f.action :submit, as: :button, button_html: { class: 'btn btn-primary' }
|