11 lines
220 B
Plaintext
11 lines
220 B
Plaintext
= simple_form_for(@table) do |f|
|
|
= f.error_notification
|
|
|
|
.form-inputs
|
|
= f.label :token_id
|
|
= f.collection_select(:token_id, Token.all, :id, "name")
|
|
= f.input :title
|
|
|
|
.form-actions
|
|
= f.button :submit
|