From 6ce05296b01b1bd177e93b5ea3745fba5a5ff8f2 Mon Sep 17 00:00:00 2001 From: Tyler Kennedy Date: Sun, 4 Dec 2022 11:41:41 -0500 Subject: Make follows a top-level activity. (#94) --- templates/activities/follows.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 templates/activities/follows.html (limited to 'templates/activities/follows.html') diff --git a/templates/activities/follows.html b/templates/activities/follows.html new file mode 100644 index 0000000..6116dd6 --- /dev/null +++ b/templates/activities/follows.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block subtitle %}Follows{% endblock %} + +{% block content %} +
+ {% for identity, details in identities %} + + + + {{ identity.name_or_handle }} + @{{ identity.handle }} + + {% if details.outbound %} + Following + {% endif %} + {% if details.inbound %} + Follows You + {% endif %} + + {% empty %} +

You have no follows.

+ {% endfor %} +
+{% endblock %} -- cgit v1.2.3