From 3554d638b31aa5ace2aa524db0165932c15d9a71 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 6 Oct 2016 21:27:58 +0200 Subject: Fix #72 - add follow/unfollow button to public profiles --- app/views/accounts/_header.html.haml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'app/views/accounts/_header.html.haml') diff --git a/app/views/accounts/_header.html.haml b/app/views/accounts/_header.html.haml index 371bc62c3..fb9abd691 100644 --- a/app/views/accounts/_header.html.haml +++ b/app/views/accounts/_header.html.haml @@ -1,4 +1,11 @@ .card{ style: "background-image: url(#{@account.header.url(:medium)})" } + - if user_signed_in? && current_account.id != @account.id + .controls + - if current_account.following?(@account) + = link_to 'Unfollow', unfollow_account_path(@account), data: { method: :post }, class: 'button' + - else + = link_to 'Follow', follow_account_path(@account), data: { method: :post }, class: 'button' + .avatar= image_tag @account.avatar.url(:large) %h1.name = display_name(@account) -- cgit