{% extends "base.html" %} {% block title %}{{title}}{% endblock %} {% block body %}
Home - {{topic.forum.name}} - {{topic.subject}}
{% if topic.forum.post_messages != false and topic.locked == 0 %} {% endif %} {% if topic.forum.mod_forum != false %} {% endif %}
{% for post in topic.posts %}
{% if topic.forum.user_id == post.user_id %}
{% endif %}
{% if topic.pinned == 1 %}{% endif %} {% if topic.locked == 1 %}{% endif %} {% if loop.first %}{{locale.topic_topic}}{% else %}{{locale.topic_reaction}}{% endif %} {{topic.subject}} - {{post.created_at}}
{{post.content|raw}}
{% set liked = 0 %} {% for likes in post.likes %} {% if likes.user_id == player.id %} {% set liked = 1 %} {% endif %} {% endfor %} {% if post.user_id == player.id %} {% endif %}
{% endfor %} {% if topic.forum.post_messages != false %}
{% endif %}
{% endblock %}