takahe/templates/activities/post.html

14 lines
495 B
HTML
Raw Normal View History

{% extends "base.html" %}
2022-12-15 07:50:54 +00:00
{% block title %}Post by {{ post.author.html_name_or_handle }}{% endblock %}
{% block content %}
2022-12-20 09:59:06 +00:00
{% for ancestor in ancestors reversed %}
{% include "activities/_post.html" with post=ancestor reply=True link_original=False %}
{% endfor %}
2022-11-18 01:52:00 +00:00
{% include "activities/_post.html" %}
2022-12-20 09:59:06 +00:00
{% for descendant in descendants %}
{% include "activities/_post.html" with post=descendant reply=True link_original=False %}
{% endfor %}
{% endblock %}