You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
985 B
17 lines
985 B
.table.workshop-blocks
|
|
.table-tr
|
|
.table-th=_'forms.labels.generic.block_number'
|
|
.table-th=_'forms.labels.generic.time'
|
|
.table-th=_'forms.labels.generic.length'
|
|
.table-th=_'forms.labels.generic.days'
|
|
.table-th.form
|
|
- @workshop_blocks.each_with_index do | info, block |
|
|
= form_tag administration_update_path(@this_conference.slug, :schedule), class: 'table-tr' do
|
|
.table-th.center.big=(block + 1)
|
|
.table-td=time_select info['time'], small: true, label: false
|
|
.table-td=length_select info['length'], {small: true, label: false}, 0.5, 2
|
|
.table-td=checkboxes :days, @block_days, info['days'].map(&:to_i), 'date.day_names', vertical: true, small: true
|
|
.table-td.form
|
|
= hidden_field_tag :workshop_block, block
|
|
= button_tag :delete_block, value: :delete_block, class: [:small, :delete] if block == @workshop_blocks.length - 2
|
|
= button_tag (info['time'].present? ? :update_block : :add_block), value: :save_block, class: [:small, :add]
|
|
|