{% extends "base.html" %} {% block title %}{{title}}{% endblock %} {% block body %}
Home - {{forums.name}}
{% if forums.post_threads != false %}
{% endif %}
{% if forums.topic is not empty %}
{% for topic in forums.topic %} {% endfor %}
{{locale.category_topics}} {{locale.category_posts}} {{locale.category_latest_reacts}}
{{topic.author.username}} {% if topic.pinned == 1 %}{% endif %} {% if topic.locked == 1 %}{% endif %} {{topic.subject}}
{{locale.category_topic_by}} {{topic.author.username}}, {{topic.created_at}}
{{topic.totalposts}} {% if topic.latest_post is empty %} {{locale.category_no_reacts}} {% else %} {{locale.category_latest_react_by}} {{topic.latest_post.author.username}},
{{topic.latest_post.created_at}} {% endif %}
{% endif %}
{% endblock %}