This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-03-30 10:42:33 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.import')
|
|
|
|
|
|
|
|
= simple_form_for @import, url: settings_import_path do |f|
|
2018-08-14 12:56:17 -07:00
|
|
|
.field-group
|
2018-09-18 07:45:58 -07:00
|
|
|
= f.input :type, collection: Import.types.keys, wrapper: :with_block_label, include_blank: false, label_method: lambda { |type| I18n.t("imports.types.#{type}") }, hint: t('imports.preface')
|
2018-08-14 12:56:17 -07:00
|
|
|
|
|
|
|
.field-group
|
|
|
|
= f.input :data, wrapper: :with_block_label, hint: t('simple_form.hints.imports.data')
|
2017-03-30 10:42:33 -07:00
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('imports.upload'), type: :submit
|