diff options
author | David Yip <yipdw@member.fsf.org> | 2018-06-12 18:13:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-12 18:13:30 -0500 |
commit | 5cff053944b4327477ca45882c9dd3b1a7a559e8 (patch) | |
tree | 83c564879534ea35f468ce319342e011773f24aa /app/views | |
parent | 99b2bc2668e79bacd7f8696315206872086ebf3a (diff) | |
parent | f6bb50b6ece555af138df164680189b1ec57da4b (diff) |
Merge branch 'master' into 454-allow-keyword-mutes-to-skip-mentions
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/accounts/_follow_button.html.haml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/views/accounts/_follow_button.html.haml b/app/views/accounts/_follow_button.html.haml index 96ae23234..558ced010 100644 --- a/app/views/accounts/_follow_button.html.haml +++ b/app/views/accounts/_follow_button.html.haml @@ -15,6 +15,11 @@ = link_to (account.local? ? account_follow_path(account) : authorize_follow_path(acct: account.acct)), data: { method: :post }, class: 'icon-button' do = fa_icon 'user-plus' = t('accounts.follow') + - elsif user_signed_in? && current_account.id == account.id + .controls + = link_to settings_profile_url, class: 'icon-button' do + = fa_icon 'pencil' + = t('settings.edit_profile') - elsif !user_signed_in? .controls .remote-follow |