From a841efc9e84179abd4ca055fa624598d5384fb59 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sat, 21 Jul 2018 23:24:12 +0200 Subject: [PATCH] Fix the following page --- templates/following.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/following.html b/templates/following.html index 1b96ed1..0acf561 100644 --- a/templates/following.html +++ b/templates/following.html @@ -8,12 +8,12 @@ {% include "header.html" %}
- {% for (follow_id, followed) in following_data %} + {% for follow in following_data %} {% if session.logged_in %}
- +
@@ -21,7 +21,7 @@ {% endif %}
- {{ utils.display_actor_inline(followed, size=80) }} + {{ utils.display_actor_inline(follow, size=80) }}
{% endfor %} {{ utils.display_pagination(older_than, newer_than) }}