logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

show.html.haml (1867B)


  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-group
  6. = f.input :display_name, placeholder: t('simple_form.labels.defaults.display_name'), hint: t('simple_form.hints.defaults.display_name', count: 30 - @account.display_name.size).html_safe
  7. = f.input :note, placeholder: t('simple_form.labels.defaults.note'), hint: t('simple_form.hints.defaults.note', count: 160 - @account.note.size).html_safe
  8. .card.compact{ style: "background-image: url(#{@account.header.url(:original)})", data: { original_src: @account.header.url(:original) } }
  9. .avatar= image_tag @account.avatar.url(:original), data: { original_src: @account.avatar.url(:original) }
  10. .fields-group
  11. = f.input :avatar, wrapper: :with_label, input_html: { accept: AccountAvatar::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.avatar')
  12. = f.input :header, wrapper: :with_label, input_html: { accept: AccountHeader::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.header')
  13. .fields-group
  14. = f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked')
  15. .fields-group
  16. .input.with_block_label
  17. %label= t('simple_form.labels.defaults.fields')
  18. %span.hint= t('simple_form.hints.defaults.fields')
  19. = f.simple_fields_for :fields do |fields_f|
  20. .row
  21. = fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name')
  22. = fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value')
  23. .actions
  24. = f.button :button, t('generic.save_changes'), type: :submit
  25. %hr/
  26. %h6= t('auth.migrate_account')
  27. %p.muted-hint= t('auth.migrate_account_html', path: settings_migration_path)