mirror of https://github.com/tootsuite/mastodon
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
- content_for :page_title do
|
|
= t('admin.settings.content_retention.title')
|
|
|
|
- content_for :heading do
|
|
%h2= t('admin.settings.title')
|
|
= render partial: 'admin/settings/shared/links'
|
|
|
|
= simple_form_for @admin_settings, url: admin_settings_content_retention_path, html: { method: :patch } do |f|
|
|
= render 'shared/error_messages', object: @admin_settings
|
|
|
|
%p.lead= t('admin.settings.content_retention.preamble')
|
|
|
|
.fields-group
|
|
= f.input :media_cache_retention_period,
|
|
input_html: { pattern: '[0-9]+' },
|
|
wrapper: :with_block_label
|
|
= f.input :backups_retention_period,
|
|
input_html: { pattern: '[0-9]+' },
|
|
wrapper: :with_block_label
|
|
|
|
%h4= t('admin.settings.content_retention.danger_zone')
|
|
|
|
.fields-group
|
|
= f.input :content_cache_retention_period,
|
|
hint: false,
|
|
input_html: { pattern: '[0-9]+' },
|
|
warning_hint: t('simple_form.hints.form_admin_settings.content_cache_retention_period'),
|
|
wrapper: :with_block_label
|
|
|
|
.actions
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|