16 lines
401 B
Plaintext
16 lines
401 B
Plaintext
= simple_form_for(@token) do |f|
|
|
= f.error_notification
|
|
|
|
.form-inputs
|
|
-# = f.input :canister_id
|
|
= f.select(:standard, Token.standards.keys.map {|standard| [standard.titleize,standard]})
|
|
= f.hidden_field :ownable_id
|
|
= f.input :symbol
|
|
= f.input :name
|
|
= f.input :total_supply
|
|
= f.input :decimals
|
|
= f.input :transfer_fee
|
|
= f.input :logo_url
|
|
|
|
= f.button :submit
|