2022-11-16 01:30:30 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Post by {{ post.author.name_or_handle }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-29 05:34:03 +00:00
|
|
|
{% if parent %}
|
|
|
|
{% include "activities/_post.html" with post=parent reply=True link_original=False %}
|
|
|
|
{% endif %}
|
2022-11-18 01:52:00 +00:00
|
|
|
{% include "activities/_post.html" %}
|
2022-11-27 19:37:52 +00:00
|
|
|
{% for reply in replies %}
|
2022-11-27 21:34:26 +00:00
|
|
|
{% include "activities/_post.html" with post=reply reply=True link_original=False %}
|
2022-11-27 19:37:52 +00:00
|
|
|
{% endfor %}
|
2022-11-16 01:30:30 +00:00
|
|
|
{% endblock %}
|