mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
9067caf9a3
Fixes #120
13 lines
495 B
HTML
13 lines
495 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Post by {{ post.author.html_name_or_handle }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for ancestor in ancestors reversed %}
|
|
{% include "activities/_post.html" with post=ancestor reply=True link_original=False %}
|
|
{% endfor %}
|
|
{% include "activities/_post.html" %}
|
|
{% for descendant in descendants %}
|
|
{% include "activities/_post.html" with post=descendant reply=True link_original=False %}
|
|
{% endfor %}
|
|
{% endblock %}
|