2018-08-18 01:03:12 +00:00
|
|
|
- content_for :page_title do
|
2022-03-22 09:07:11 +00:00
|
|
|
= t('authorize_follow.title', acct: @resource.pretty_acct)
|
2018-08-18 01:03:12 +00:00
|
|
|
|
|
|
|
.form-container
|
|
|
|
.follow-prompt
|
|
|
|
= render 'application/card', account: @resource
|
|
|
|
|
|
|
|
- if current_account.following?(@resource)
|
|
|
|
.flash-message
|
|
|
|
%strong
|
|
|
|
= t('authorize_follow.already_following')
|
|
|
|
|
2020-02-24 20:19:19 +00:00
|
|
|
= render 'post_follow_actions'
|
|
|
|
- elsif current_account.requested?(@resource)
|
|
|
|
.flash-message
|
|
|
|
%strong
|
|
|
|
= t('authorize_follow.already_requested')
|
|
|
|
|
2018-08-18 01:03:12 +00:00
|
|
|
= render 'post_follow_actions'
|
|
|
|
- else
|
|
|
|
= form_tag authorize_interaction_path, method: :post, class: 'simple_form' do
|
|
|
|
= hidden_field_tag :action, :follow
|
|
|
|
= hidden_field_tag :acct, @resource.acct
|
|
|
|
= button_tag t('authorize_follow.follow'), type: :submit
|