Add helper for event switch checkboxes

This commit is contained in:
James Mason 2018-02-13 18:12:30 -08:00
parent ad19a6d753
commit 0848df6948
3 changed files with 25 additions and 27 deletions

View file

@ -21,13 +21,7 @@
%td
%b Highlight
%td
= check_box_tag @conference.short_title, @event.id, @event.is_highlight,
method: :patch, url: "/admin/conferences/#{@conference.short_title}/program/events/#{@event.id}?event[is_highlight]=",
class: 'switch-checkbox', data: { size: 'small',
off_color: 'warning',
on_text: 'Yes',
off_text: 'No' }
= event_switch_checkbox(@event, :is_highlight, @conference.short_title)
%tr
%td
%b State
@ -47,12 +41,7 @@
%td
%b Requires Registration
%td
= check_box_tag @conference.short_title, @event.id, @event.require_registration,
method: :patch, url: "/admin/conferences/#{@conference.short_title}/program/events/#{@event.id}?event[require_registration]=",
class: 'switch-checkbox', data: { size: 'small',
off_color: 'warning',
on_text: 'Yes',
off_text: 'No' }
= event_switch_checkbox(@event, :require_registration, @conference.short_title)
- if @event.require_registration
= registered_text(@event)