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.

66 lines
2.8 KiB

  1. - content_for :page_title do
  2. = t('settings.edit_profile')
  3. = simple_form_for @account, url: settings_profile_path, html: { method: :put } do |f|
  4. = render 'shared/error_messages', object: @account
  5. .fields-row
  6. .fields-row__column.fields-group.fields-row__column-6
  7. = f.input :display_name, wrapper: :with_label, input_html: { maxlength: 30 }, hint: false
  8. = f.input :note, wrapper: :with_label, input_html: { maxlength: 160 }, hint: false
  9. .fields-row
  10. .fields-row__column.fields-row__column-6
  11. = render 'application/card', account: @account
  12. .fields-row__column.fields-group.fields-row__column-6
  13. = f.input :header, wrapper: :with_label, input_html: { accept: AccountHeader::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.header', dimensions: '1500x500', size: number_to_human_size(AccountHeader::LIMIT))
  14. = f.input :avatar, wrapper: :with_label, input_html: { accept: AccountAvatar::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.avatar', dimensions: '400x400', size: number_to_human_size(AccountAvatar::LIMIT))
  15. %hr.spacer/
  16. .fields-group
  17. = f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked')
  18. .fields-group
  19. = f.input :bot, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.bot')
  20. .fields-group
  21. = f.input :discoverable, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.discoverable_html', min_followers: Account::MIN_FOLLOWERS_DISCOVERY, path: explore_path)
  22. %hr.spacer/
  23. .fields-row
  24. .fields-row__column.fields-group.fields-row__column-6
  25. .input.with_block_label
  26. %label= t('simple_form.labels.defaults.fields')
  27. %span.hint= t('simple_form.hints.defaults.fields')
  28. = f.simple_fields_for :fields do |fields_f|
  29. .row
  30. = fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name'), input_html: { maxlength: 255 }
  31. = fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value'), input_html: { maxlength: 255 }
  32. .fields-row__column.fields-group.fields-row__column-6
  33. %h6= t('verification.verification')
  34. %p.hint= t('verification.explanation_html')
  35. .input-copy
  36. .input-copy__wrapper
  37. %input{ type: :text, maxlength: '999', spellcheck: 'false', readonly: 'true', value: link_to('Mastodon', ActivityPub::TagManager.instance.url_for(@account), rel: 'me').to_str }
  38. %button{ type: :button }= t('generic.copy')
  39. .actions
  40. = f.button :button, t('generic.save_changes'), type: :submit
  41. %hr/
  42. %h6= t('auth.migrate_account')
  43. %p.muted-hint= t('auth.migrate_account_html', path: settings_migration_path)
  44. - if open_deletion?
  45. %hr.spacer/
  46. %h6= t('auth.delete_account')
  47. %p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)