mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
13 lines
448 B
HTML
13 lines
448 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Post by {{ post.author.name_or_handle }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if parent %}
|
|
{% include "activities/_post.html" with post=parent reply=True link_original=False %}
|
|
{% endif %}
|
|
{% include "activities/_post.html" %}
|
|
{% for reply in replies %}
|
|
{% include "activities/_post.html" with post=reply reply=True link_original=False %}
|
|
{% endfor %}
|
|
{% endblock %}
|