diff options
author | Andrew Godwin | 2022-11-27 12:37:52 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-27 12:37:52 -0700 |
commit | 3217569df583829d776bcbaf77b80696d3527005 (patch) | |
tree | 8924b33d8dc2e768c1b594d99c9128b698499449 /templates/activities/post.html | |
parent | 03ba96ff26943f11b0ae1a21a0bcc39309b05901 (diff) | |
download | takahe-3217569df583829d776bcbaf77b80696d3527005.tar.gz takahe-3217569df583829d776bcbaf77b80696d3527005.tar.bz2 takahe-3217569df583829d776bcbaf77b80696d3527005.zip |
Link to post pages and show replies there
Fixes #60, #59
Diffstat (limited to 'templates/activities/post.html')
-rw-r--r-- | templates/activities/post.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/activities/post.html b/templates/activities/post.html index eee254f..d27790f 100644 --- a/templates/activities/post.html +++ b/templates/activities/post.html @@ -4,4 +4,7 @@ {% block content %} {% include "activities/_post.html" %} + {% for reply in replies %} + {% include "activities/_post.html" with post=reply reply=True %} + {% endfor %} {% endblock %} |