{% extends "site_base.html" %} {% load thumbnail %} {% block "metas" %} {{ title }} - {{ settings.SITE_TITLE }} {% endblock "metas" %} {% block "breadcrumbs" %} {% endblock "breadcrumbs" %} {% block "content" %}
{% include "rforum/elements/forum-top.html" %} {% include "rforum/elements/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/elements/actions-forum.html" %} {% include "rforum/elements/forum-bottom.html" %}
{% endblock "content" %}