about summary refs log tree commit diff
path: root/app/views/settings/migrations/show.html.haml
blob: c69061d50bcd023a2b0c82e7ad6e5f253b1db4c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- content_for :page_title do
  = t('settings.migrate')

= simple_form_for @migration, as: :migration, url: settings_migration_path, html: { method: :put } do |f|
  - if @migration.account
    %p.hint= t('migrations.currently_redirecting')

    .fields-group
      = render partial: 'application/card', locals: { account: @migration.account }

  = render 'shared/error_messages', object: @migration

  .fields-group
    = f.input :acct, placeholder: t('migrations.acct')

  .actions
    = f.button :button, t('migrations.proceed'), type: :submit, class: 'negative'