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
|
|
|
|
2023-06-14 04:38:07 +02:00
|
|
|
- content_for :heading do
|
|
|
|
%h2= t('settings.profile')
|
|
|
|
= render partial: 'settings/shared/profile_navigation'
|
2020-03-08 16:04:03 +01:00
|
|
|
|
|
|
|
= 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
|
|
|
|
|
2023-06-14 04:38:07 +02:00
|
|
|
%p.lead= t('edit_profile.hint_html')
|
|
|
|
|
|
|
|
%h4= t('edit_profile.basic_information')
|
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
|
2023-06-14 04:38:07 +02:00
|
|
|
.fields-group
|
|
|
|
= f.input :display_name, wrapper: :with_block_label, input_html: { maxlength: 30, data: { default: @account.username } }
|
2016-03-14 17:41:13 +01:00
|
|
|
|
2023-06-14 04:38:07 +02:00
|
|
|
.fields-group
|
|
|
|
= f.input :note, wrapper: :with_block_label, input_html: { maxlength: 500 }
|
2022-03-07 09:36:47 +01:00
|
|
|
|
2018-09-18 16:45:58 +02:00
|
|
|
.fields-row__column.fields-group.fields-row__column-6
|
|
|
|
.input.with_block_label
|
|
|
|
%label= t('simple_form.labels.defaults.fields')
|
2023-06-14 04:38:07 +02:00
|
|
|
%span.hint= t('simple_form.hints.account.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
|
|
|
|
2023-06-14 04:38:07 +02:00
|
|
|
.fields-row
|
|
|
|
.fields-row__column.fields-row__column-6
|
|
|
|
.fields-group
|
2024-01-09 16:28:56 +01:00
|
|
|
= f.input :avatar,
|
|
|
|
hint: t('simple_form.hints.defaults.avatar', dimensions: '400x400', size: number_to_human_size(Account::Avatar::LIMIT)),
|
|
|
|
input_html: { accept: Account::Avatar::IMAGE_MIME_TYPES.join(',') },
|
|
|
|
wrapper: :with_block_label
|
2018-09-18 16:45:58 +02:00
|
|
|
|
2023-08-18 18:24:32 +02:00
|
|
|
.fields-row__column.fields-row__column-6
|
|
|
|
.fields-group
|
|
|
|
= image_tag @account.avatar.url, class: 'fields-group__thumbnail', id: 'account_avatar-preview'
|
|
|
|
- if @account.avatar.present?
|
2023-06-14 04:38:07 +02:00
|
|
|
= link_to settings_profile_picture_path('avatar'), data: { method: :delete }, class: 'link-button link-button--destructive' do
|
2024-08-08 00:52:35 +02:00
|
|
|
= material_symbol 'delete'
|
2023-06-14 04:38:07 +02:00
|
|
|
= t('generic.delete')
|
2018-04-14 12:41:08 +02:00
|
|
|
|
2023-06-14 04:38:07 +02:00
|
|
|
.fields-row
|
|
|
|
.fields-row__column.fields-row__column-6
|
|
|
|
.fields-group
|
2024-01-09 16:28:56 +01:00
|
|
|
= f.input :header,
|
|
|
|
hint: t('simple_form.hints.defaults.header', dimensions: '1500x500', size: number_to_human_size(Account::Header::LIMIT)),
|
|
|
|
input_html: { accept: Account::Header::IMAGE_MIME_TYPES.join(',') },
|
|
|
|
wrapper: :with_block_label
|
2017-11-27 22:47:06 +01:00
|
|
|
|
2023-08-18 18:24:32 +02:00
|
|
|
.fields-row__column.fields-row__column-6
|
|
|
|
.fields-group
|
|
|
|
= image_tag @account.header.url, class: 'fields-group__thumbnail', id: 'account_header-preview'
|
|
|
|
- if @account.header.present?
|
2023-06-14 04:38:07 +02:00
|
|
|
= link_to settings_profile_picture_path('header'), data: { method: :delete }, class: 'link-button link-button--destructive' do
|
2024-08-08 00:52:35 +02:00
|
|
|
= material_symbol 'delete'
|
2023-06-14 04:38:07 +02:00
|
|
|
= t('generic.delete')
|
2017-11-27 22:47:06 +01:00
|
|
|
|
2023-06-14 04:38:07 +02:00
|
|
|
%h4= t('edit_profile.other')
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :bot, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.bot')
|
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|