39aff78f11
We do not enforce the rules, so removing it and switching the existing annotations to strong_parameters does not make our situation worse.
12 lines
519 B
Text
12 lines
519 B
Text
= form.input :name
|
|
= form.input :description, as: :text, input_html: {rows: 10}
|
|
= form.input :duration, :as => :select, :collection => 1..3
|
|
- unless local_assigns[:periodic]
|
|
= form.input :user_list, :as => :string, :input_html => { 'data-pre' => form.object.users.map(&:token_attributes).to_json }
|
|
= form.input :required_users
|
|
= form.association :workgroup, collection: Workgroup.order(:name)
|
|
= form.input :due_date, as: :date_picker
|
|
- unless local_assigns[:periodic]
|
|
= form.input :done
|
|
|
|
= render 'form_javascript'
|