blob: d27790fb02e8e65ad680b46b4473c2ead3d41aaf (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "base.html" %}
{% block title %}Post by {{ post.author.name_or_handle }}{% endblock %}
{% block content %}
{% include "activities/_post.html" %}
{% for reply in replies %}
{% include "activities/_post.html" with post=reply reply=True %}
{% endfor %}
{% endblock %}
|