mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-26 11:21:36 +01:00
Use shared form
partial for admin/domain_blocks
views (#29609)
This commit is contained in:
parent
ffbbf74c50
commit
33e829763d
3 changed files with 56 additions and 110 deletions
46
app/views/admin/domain_blocks/_form.html.haml
Normal file
46
app/views/admin/domain_blocks/_form.html.haml
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
.fields-row
|
||||||
|
.fields-row__column.fields-row__column-6.fields-group
|
||||||
|
= form.input :domain,
|
||||||
|
disabled: form.object.persisted?,
|
||||||
|
hint: t('admin.domain_blocks.new.hint'),
|
||||||
|
label: t('admin.domain_blocks.domain'),
|
||||||
|
readonly: form.object.persisted?,
|
||||||
|
required: true,
|
||||||
|
wrapper: :with_label
|
||||||
|
.fields-row__column.fields-row__column-6.fields-group
|
||||||
|
= form.input :severity,
|
||||||
|
collection: DomainBlock.severities.keys,
|
||||||
|
hint: t('admin.domain_blocks.new.severity.desc_html'),
|
||||||
|
include_blank: false,
|
||||||
|
label_method: ->(type) { t("admin.domain_blocks.new.severity.#{type}") },
|
||||||
|
wrapper: :with_label
|
||||||
|
.fields-group
|
||||||
|
= form.input :reject_media,
|
||||||
|
as: :boolean,
|
||||||
|
hint: I18n.t('admin.domain_blocks.reject_media_hint'),
|
||||||
|
label: I18n.t('admin.domain_blocks.reject_media'),
|
||||||
|
wrapper: :with_label
|
||||||
|
.fields-group
|
||||||
|
= form.input :reject_reports,
|
||||||
|
as: :boolean,
|
||||||
|
hint: I18n.t('admin.domain_blocks.reject_reports_hint'),
|
||||||
|
label: I18n.t('admin.domain_blocks.reject_reports'),
|
||||||
|
wrapper: :with_label
|
||||||
|
.fields-group
|
||||||
|
= form.input :obfuscate,
|
||||||
|
as: :boolean,
|
||||||
|
hint: I18n.t('admin.domain_blocks.obfuscate_hint'),
|
||||||
|
label: I18n.t('admin.domain_blocks.obfuscate'),
|
||||||
|
wrapper: :with_label
|
||||||
|
.field-group
|
||||||
|
= form.input :private_comment,
|
||||||
|
as: :string,
|
||||||
|
hint: t('admin.domain_blocks.private_comment_hint'),
|
||||||
|
label: I18n.t('admin.domain_blocks.private_comment'),
|
||||||
|
wrapper: :with_label
|
||||||
|
.field-group
|
||||||
|
= form.input :public_comment,
|
||||||
|
as: :string,
|
||||||
|
hint: t('admin.domain_blocks.public_comment_hint'),
|
||||||
|
label: I18n.t('admin.domain_blocks.public_comment'),
|
||||||
|
wrapper: :with_label
|
|
@ -1,63 +1,12 @@
|
||||||
- content_for :page_title do
|
- content_for :page_title do
|
||||||
= t('admin.domain_blocks.edit')
|
= t('admin.domain_blocks.edit')
|
||||||
|
|
||||||
= simple_form_for @domain_block, url: admin_domain_block_path(@domain_block), method: :put do |f|
|
= simple_form_for @domain_block, url: admin_domain_block_path(@domain_block), method: :put do |form|
|
||||||
= render 'shared/error_messages', object: @domain_block
|
= render 'shared/error_messages', object: @domain_block
|
||||||
|
|
||||||
.fields-row
|
= render form
|
||||||
.fields-row__column.fields-row__column-6.fields-group
|
|
||||||
= f.input :domain,
|
|
||||||
disabled: true,
|
|
||||||
hint: t('admin.domain_blocks.new.hint'),
|
|
||||||
label: t('admin.domain_blocks.domain'),
|
|
||||||
readonly: true,
|
|
||||||
required: true,
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-row__column.fields-row__column-6.fields-group
|
|
||||||
= f.input :severity,
|
|
||||||
collection: DomainBlock.severities.keys,
|
|
||||||
hint: t('admin.domain_blocks.new.severity.desc_html'),
|
|
||||||
include_blank: false,
|
|
||||||
label_method: ->(type) { t("admin.domain_blocks.new.severity.#{type}") },
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group
|
|
||||||
= f.input :reject_media,
|
|
||||||
as: :boolean,
|
|
||||||
hint: I18n.t('admin.domain_blocks.reject_media_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.reject_media'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group
|
|
||||||
= f.input :reject_reports,
|
|
||||||
as: :boolean,
|
|
||||||
hint: I18n.t('admin.domain_blocks.reject_reports_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.reject_reports'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group
|
|
||||||
= f.input :obfuscate,
|
|
||||||
as: :boolean,
|
|
||||||
hint: I18n.t('admin.domain_blocks.obfuscate_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.obfuscate'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.field-group
|
|
||||||
= f.input :private_comment,
|
|
||||||
as: :string,
|
|
||||||
hint: t('admin.domain_blocks.private_comment_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.private_comment'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.field-group
|
|
||||||
= f.input :public_comment,
|
|
||||||
as: :string,
|
|
||||||
hint: t('admin.domain_blocks.public_comment_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.public_comment'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.actions
|
.actions
|
||||||
= f.button :button,
|
= form.button :button,
|
||||||
t('generic.save_changes'),
|
t('generic.save_changes'),
|
||||||
type: :submit
|
type: :submit
|
||||||
|
|
|
@ -1,61 +1,12 @@
|
||||||
- content_for :page_title do
|
- content_for :page_title do
|
||||||
= t('.title')
|
= t('.title')
|
||||||
|
|
||||||
= simple_form_for @domain_block, url: admin_domain_blocks_path do |f|
|
= simple_form_for @domain_block, url: admin_domain_blocks_path do |form|
|
||||||
= render 'shared/error_messages', object: @domain_block
|
= render 'shared/error_messages', object: @domain_block
|
||||||
|
|
||||||
.fields-row
|
= render form
|
||||||
.fields-row__column.fields-row__column-6.fields-group
|
|
||||||
= f.input :domain,
|
|
||||||
hint: t('.hint'),
|
|
||||||
label: t('admin.domain_blocks.domain'),
|
|
||||||
required: true,
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-row__column.fields-row__column-6.fields-group
|
|
||||||
= f.input :severity,
|
|
||||||
collection: DomainBlock.severities.keys,
|
|
||||||
hint: t('.severity.desc_html'),
|
|
||||||
include_blank: false,
|
|
||||||
label_method: ->(type) { t(".severity.#{type}") },
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group
|
|
||||||
= f.input :reject_media,
|
|
||||||
as: :boolean,
|
|
||||||
hint: I18n.t('admin.domain_blocks.reject_media_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.reject_media'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group
|
|
||||||
= f.input :reject_reports,
|
|
||||||
as: :boolean,
|
|
||||||
hint: I18n.t('admin.domain_blocks.reject_reports_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.reject_reports'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group
|
|
||||||
= f.input :obfuscate,
|
|
||||||
as: :boolean,
|
|
||||||
hint: I18n.t('admin.domain_blocks.obfuscate_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.obfuscate'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.field-group
|
|
||||||
= f.input :private_comment,
|
|
||||||
as: :string,
|
|
||||||
hint: t('admin.domain_blocks.private_comment_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.private_comment'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.field-group
|
|
||||||
= f.input :public_comment,
|
|
||||||
as: :string,
|
|
||||||
hint: t('admin.domain_blocks.public_comment_hint'),
|
|
||||||
label: I18n.t('admin.domain_blocks.public_comment'),
|
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.actions
|
.actions
|
||||||
= f.button :button,
|
= form.button :button,
|
||||||
t('.create'),
|
t('.create'),
|
||||||
type: :submit
|
type: :submit
|
||||||
|
|
Loading…
Reference in a new issue