thirteen-tien-len/app/views/tables/_form.html.haml
2024-03-08 04:36:08 +00:00

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