You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
3.2 KiB

  1. - content_for :page_title do
  2. = t('settings.edit_profile')
  3. - content_for :heading_actions do
  4. = button_tag t('generic.save_changes'), class: 'button', form: 'edit_profile'
  5. = simple_form_for @account, url: settings_profile_path, html: { method: :put, id: 'edit_profile' } do |f|
  6. = render 'shared/error_messages', object: @account
  7. .fields-row
  8. .fields-row__column.fields-group.fields-row__column-6
  9. = f.input :display_name, wrapper: :with_label, input_html: { maxlength: 30, data: { default: @account.username } }, hint: false
  10. = f.input :note, wrapper: :with_label, input_html: { maxlength: 500 }, hint: false
  11. .fields-row
  12. .fields-row__column.fields-row__column-6
  13. = render 'application/card', account: @account
  14. .fields-row__column.fields-group.fields-row__column-6
  15. = 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)
  16. = 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)
  17. %hr.spacer/
  18. .fields-group
  19. = f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked')
  20. .fields-group
  21. = f.input :bot, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.bot')
  22. .fields-group
  23. = 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
  24. %hr.spacer/
  25. .fields-row
  26. .fields-row__column.fields-group.fields-row__column-6
  27. .input.with_block_label
  28. %label= t('simple_form.labels.defaults.fields')
  29. %span.hint= t('simple_form.hints.defaults.fields')
  30. = f.simple_fields_for :fields do |fields_f|
  31. .row
  32. = fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name'), input_html: { maxlength: 255 }
  33. = fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value'), input_html: { maxlength: 255 }
  34. .fields-row__column.fields-group.fields-row__column-6
  35. %h6= t('verification.verification')
  36. %p.hint= t('verification.explanation_html')
  37. .input-copy
  38. .input-copy__wrapper
  39. %input{ type: :text, maxlength: '999', spellcheck: 'false', readonly: 'true', value: link_to('Mastodon', ActivityPub::TagManager.instance.url_for(@account), rel: 'me').to_str }
  40. %button{ type: :button }= t('generic.copy')
  41. .actions
  42. = f.button :button, t('generic.save_changes'), type: :submit
  43. %hr/
  44. %h6= t('auth.migrate_account')
  45. %p.muted-hint= t('auth.migrate_account_html', path: settings_migration_path)
  46. %hr.spacer/
  47. %h6= t 'migrations.incoming_migrations'
  48. %p.muted-hint= t('migrations.incoming_migrations_html', path: settings_aliases_path)
  49. - if open_deletion?
  50. %hr.spacer/
  51. %h6= t('auth.delete_account')
  52. %p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)