2016-03-14 17:41:13 +01:00
|
|
|
- content_for :page_title do
|
2016-11-15 23:02:57 +01:00
|
|
|
= t('settings.edit_profile')
|
2016-03-14 17:41:13 +01:00
|
|
|
|
2020-03-08 16:04:03 +01:00
|
|
|
- content_for :heading_actions do
|
|
|
|
= button_tag t('generic.save_changes'), class: 'button', form: 'edit_profile'
|
|
|
|
|
|
|
|
= simple_form_for @account, url: settings_profile_path, html: { method: :put, id: 'edit_profile' } do |f|
|
2016-10-18 16:37:15 +02:00
|
|
|
= render 'shared/error_messages', object: @account
|
|
|
|
|
2018-09-18 16:45:58 +02:00
|
|
|
.fields-row
|
|
|
|
.fields-row__column.fields-group.fields-row__column-6
|
2020-04-28 10:16:55 +02:00
|
|
|
= f.input :display_name, wrapper: :with_label, input_html: { maxlength: 30, data: { default: @account.username } }, hint: false
|
2019-05-19 22:51:44 +02:00
|
|
|
= f.input :note, wrapper: :with_label, input_html: { maxlength: 500 }, hint: false
|
2017-07-21 05:28:51 +02:00
|
|
|
|
2018-09-18 16:45:58 +02:00
|
|
|
.fields-row
|
|
|
|
.fields-row__column.fields-row__column-6
|
|
|
|
= render 'application/card', account: @account
|
2017-07-21 05:28:51 +02:00
|
|
|
|
2018-09-18 16:45:58 +02:00
|
|
|
.fields-row__column.fields-group.fields-row__column-6
|
2020-04-20 14:03:03 +02:00
|
|
|
= f.input :header, wrapper: :with_label, input_html: { accept: AccountHeader::IMAGE_MIME_TYPES.join(',') }, hint: picture_hint(t('simple_form.hints.defaults.header', dimensions: '1500x500', size: number_to_human_size(AccountHeader::LIMIT)), @account.header)
|
2018-11-29 02:56:09 +01:00
|
|
|
|
2020-04-20 14:03:03 +02:00
|
|
|
= f.input :avatar, wrapper: :with_label, input_html: { accept: AccountAvatar::IMAGE_MIME_TYPES.join(',') }, hint: picture_hint(t('simple_form.hints.defaults.avatar', dimensions: '400x400', size: number_to_human_size(AccountAvatar::LIMIT)), @account.avatar)
|
2018-09-18 16:45:58 +02:00
|
|
|
|
|
|
|
%hr.spacer/
|
2016-12-22 23:03:57 +01:00
|
|
|
|
2017-07-21 05:28:51 +02:00
|
|
|
.fields-group
|
|
|
|
= f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked')
|
2016-03-14 17:41:13 +01:00
|
|
|
|
2018-05-07 09:31:07 +02:00
|
|
|
.fields-group
|
|
|
|
= f.input :bot, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.bot')
|
|
|
|
|
2021-08-20 16:11:58 +02:00
|
|
|
.fields-group
|
|
|
|
= f.input :discoverable, as: :boolean, wrapper: :with_label, hint: t(Setting.profile_directory ? 'simple_form.hints.defaults.discoverable' : 'simple_form.hints.defaults.discoverable_no_directory'), recommended: true
|
2018-12-06 17:36:11 +01:00
|
|
|
|
2018-09-18 16:45:58 +02:00
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
.fields-row
|
|
|
|
.fields-row__column.fields-group.fields-row__column-6
|
|
|
|
.input.with_block_label
|
|
|
|
%label= t('simple_form.labels.defaults.fields')
|
|
|
|
%span.hint= t('simple_form.hints.defaults.fields')
|
2018-04-14 12:41:08 +02:00
|
|
|
|
2018-09-18 16:45:58 +02:00
|
|
|
= f.simple_fields_for :fields do |fields_f|
|
|
|
|
.row
|
2018-10-26 01:55:24 +02:00
|
|
|
= fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name'), input_html: { maxlength: 255 }
|
|
|
|
= fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value'), input_html: { maxlength: 255 }
|
2018-09-18 16:45:58 +02:00
|
|
|
|
|
|
|
.fields-row__column.fields-group.fields-row__column-6
|
|
|
|
%h6= t('verification.verification')
|
|
|
|
%p.hint= t('verification.explanation_html')
|
|
|
|
|
|
|
|
.input-copy
|
|
|
|
.input-copy__wrapper
|
|
|
|
%input{ type: :text, maxlength: '999', spellcheck: 'false', readonly: 'true', value: link_to('Mastodon', ActivityPub::TagManager.instance.url_for(@account), rel: 'me').to_str }
|
|
|
|
%button{ type: :button }= t('generic.copy')
|
2018-04-14 12:41:08 +02:00
|
|
|
|
2016-09-25 15:48:20 +02:00
|
|
|
.actions
|
2016-11-15 23:02:57 +01:00
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|
2017-11-27 22:47:06 +01:00
|
|
|
|
|
|
|
%hr/
|
|
|
|
|
|
|
|
%h6= t('auth.migrate_account')
|
|
|
|
%p.muted-hint= t('auth.migrate_account_html', path: settings_migration_path)
|
2018-09-18 16:45:58 +02:00
|
|
|
|
2019-09-19 20:58:19 +02:00
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
%h6= t 'migrations.incoming_migrations'
|
|
|
|
%p.muted-hint= t('migrations.incoming_migrations_html', path: settings_aliases_path)
|
|
|
|
|
2018-09-18 16:45:58 +02:00
|
|
|
- if open_deletion?
|
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
%h6= t('auth.delete_account')
|
|
|
|
%p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)
|