View post #{{ post.id }}
{% include "get_media.html" %}
Details
{% include "post_details.html" %}
{% if let Some(parent_post) = parent_post %}
Parent
{{ parent_post.rating }}
{% else %}
{% endif %} {% if !children_posts.is_empty() %}
Child posts
{% for child_post in children_posts %}
{{ child_post.rating | upper }}
{% endfor %}
{% endif %}
Tags
{% for tag in tags %}
{{ tag.name }}
{% endfor %}