diff options
author | Andrew Godwin | 2022-12-16 17:39:10 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-16 17:39:10 -0700 |
commit | c588567c8698700cd347d9b8f884a7967890aa58 (patch) | |
tree | 6d7a761fe44de8dd4e8022f0dd597bbd0498fabc /templates | |
parent | be377653fe209992631b14e5071aedb98e60ee2a (diff) | |
download | takahe-c588567c8698700cd347d9b8f884a7967890aa58.tar.gz takahe-c588567c8698700cd347d9b8f884a7967890aa58.tar.bz2 takahe-c588567c8698700cd347d9b8f884a7967890aa58.zip |
Add follow times
Diffstat (limited to 'templates')
-rw-r--r-- | templates/activities/follows.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/activities/follows.html b/templates/activities/follows.html index 5ee695f..eae344b 100644 --- a/templates/activities/follows.html +++ b/templates/activities/follows.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% load activity_tags %} {% block subtitle %}Follows{% endblock %} @@ -27,6 +28,7 @@ {% if identity.id in inbound_ids %} <span class="pill">Follows You</span> {% endif %} + <time>{{ identity.follow_date | timedeltashort }} ago</time> </a> {% empty %} <p class="option empty">You have no follows.</p> |