Allow scheduling volunteers for sessions.

Also fix a small bug for admin registrations edit.
This commit is contained in:
Michael Ball 2020-07-25 17:38:44 -07:00
parent b664639817
commit 8e1d03a318
12 changed files with 110 additions and 31 deletions

View file

@ -6,6 +6,9 @@
= speaker_selector_input f
- if current_user.manages_volunteers?(@conference)
= volunteer_selector_input f
= track_selector_input f
= f.input :event_type_id, as: :select,
@ -67,8 +70,8 @@
:javascript
$(document).ready(function() {
$('#event_speaker_ids').selectize({
$('.js-userSelector').selectize({
plugins: ['remove_button'],
maxItems: 100
} )
})
});