38 lines
1.1 KiB
Text
38 lines
1.1 KiB
Text
= simple_form_for [:admin, @card] do |f|
|
|
.form-inputs
|
|
.row
|
|
.col-md-4
|
|
= f.input :gameid, label: 'Game ID Number'
|
|
.col-md-4
|
|
= f.input :title
|
|
.col-md-4
|
|
= f.association :character
|
|
.row
|
|
.col-md-4
|
|
= f.association :rarity
|
|
.col-md-4
|
|
= f.association :type
|
|
.col-md-4
|
|
= f.association :awaken_type
|
|
.row
|
|
.col-md-6
|
|
= f.association :leader_skill, label_method: :description
|
|
.col-md-6
|
|
= f.association :passive_skill
|
|
.row
|
|
.col-md-12
|
|
= f.association :super_attack, label_method: :full
|
|
.row
|
|
.col-md-6
|
|
= f.association :dokkan_card, collection: Card.includes(:character).all, label_method: :full_name
|
|
.row
|
|
.col-md-12
|
|
= f.label :links
|
|
div
|
|
= f.association :links, as: :check_boxes, item_wrapper_tag: nil, item_label_class: 'checkbox-inline', label: false
|
|
.row
|
|
.col-md-12
|
|
= f.label 'Verification'
|
|
= f.input :verified, as: :boolean, item_wrapper_tag: nil, item_label_class: 'checkbox-inline'
|
|
.form-actions
|
|
= f.button :button
|