{% extends "site_base.html" %} {% load thumbnail %} {% block "metas" %} {{ title }} - {{ settings.SITE_TITLE }} {% endblock "metas" %} {% block "breadcrumbs" %} {% endblock "breadcrumbs" %} {% block "content" %}
{% if subforos %} {% include "rforum/_forum-top.html" %}
{% for forum in subforos %} {% endfor %}
{{ _('SubForum') }} {{ _('Topics') }} {{ _('Last Post') }}
{{ forum.title }} {{ forum.title }}

{{ forum.description|safe }}

{{ _('Moderators') }}: {% for moder in forum.moderators.all %} {{ moder }}{% if not forloop.last %}, {% endif %}{% endfor %}

{{ forum.topics.count }} {% if forum.topics.all.0.title %}

{{ forum.topics.all.0.title }}

{{ forum.topics.all.0.date_modified }}

{% else %}---{% endif %}

{% endif %} {% include "rforum/_forum-top.html" %} {% include "rforum/_actions-forum.html" %}
{% for topic in myforum.topics.all %} {% if topic.status = 1 %} {% if topic.closed and topic.sticky %} {% endif %} {% endfor %}
{{ _('Topics') }} {{ _('Replies') }} {{ _('Views') }} {{ _('Last Post') }}
{{ topic.title }}{{ topic.title }}{{ topic.title }}{{ topic.title }} {{ topic.title }}

{{ _('by') }}: {{ topic.user }} → {{ topic.date_created }}

{{ topic.posts.count|add:"-1" }} {{ topic.hits }} {% for p in topic.posts.all %} {% if forloop.last %}

# {{ _('by') }}: {{ p.user }}

{{ p.date_modified }}

{% endif %} {% endfor %}
{% include "rforum/_actions-forum.html" %} {% include "rforum/_forum-bottom.html" %}
{% endblock "content" %}