From 7b61da9c7f0c1dac650c9224d27ad1a7b14b3471 Mon Sep 17 00:00:00 2001 From: Bat Date: Wed, 13 Jun 2018 18:52:26 +0100 Subject: [PATCH] Add a button to follow people --- templates/users/details.html.tera | 4 ++++ templates/users/followers.html.tera | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/templates/users/details.html.tera b/templates/users/details.html.tera index 6bc5c2c9..0d86c414 100644 --- a/templates/users/details.html.tera +++ b/templates/users/details.html.tera @@ -31,6 +31,10 @@ {% if is_remote %} Open on {{ instance_url }} {% endif %} + + {% if not is_self %} + Follow + {% endif %}
diff --git a/templates/users/followers.html.tera b/templates/users/followers.html.tera index e8af7cd6..802316f3 100644 --- a/templates/users/followers.html.tera +++ b/templates/users/followers.html.tera @@ -26,6 +26,10 @@ {% if is_remote %} Open on {{ instance_url }} {% endif %} + + {% if not is_self %} + Follow + {% endif %}

Followers