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.
|
|
|
- add_inline_script :registrations
|
|
|
|
= columns(medium: 12) do
|
|
|
|
.goes-fullscreen#registrations-table
|
|
|
|
.flex-column
|
|
|
|
= searchfield :search, nil, big: true, stretch: true
|
|
|
|
%a.button{data: { expands: 'registrations-table' }}='expand'
|
|
|
|
%a.button.delete{data: { contracts: 'registrations-table' }}='close'
|
|
|
|
%a.button.modify{data: { 'opens-modal': 'new-registration' }}='+'
|
|
|
|
.table-scroller#registrations
|
|
|
|
= html_table(@excel_data, registrations_table_options)
|
|
|
|
= admin_update_form id: 'new-registration', class: 'modal-edit' do
|
|
|
|
.modal-edit-overlay{data: { 'closes-modal': 'new-registration' }}
|
|
|
|
.modal-edit-content
|
|
|
|
= html_edit_table @excel_data, registrations_edit_table_options
|
|
|
|
.actions.center
|
|
|
|
%a.button.subdued{data: { 'closes-modal': 'new-registration' }} Cancel
|
|
|
|
= button :save, value: :save, class: :modify
|