{% if post.replies|length > 0 %}
Replies
    {% for reply in post.replies %}
  1. {% if reply.author.url %} {{ reply.author.name }} {% else %} {{ reply.author.name }} {% endif %}
    {{ reply.html }}
    {% endfor %}
{% endif %} {% if post.reacjis|length > 0 %}
Reactions
{% for reacji, replies in post.reacjis.items() %}
{{ reacji }}
    {% for reply in replies %}
  • {% if reply.author.url %} {{ reply.author.name }} {% else %} {{ reply.author.name }} {% endif %}
  • {% endfor %}
{% endfor %}
{% endif %}