{% extends "layout/navigation.html" %} {* vim: set et ai ts=2 sw=2 enc=utf-8: *} {% block "title" %}{% trans "View Forum" %} - {{ forum.name|e }}{% endblock %} {% block "html/head" %} {% endblock %} {% block "trace" %} » {% for item in pathbar %} {{ item.name|e }} {% if not loop.last %}»{% endif %} {% endfor %} {% endblock %} {% block "content" %} {% if forum.forums %} {% define forums forum.forums %} {% include "partial/forum.html" %} {% endif %}
{{ forum.name|e }}
{{ forum.description|e }}
{% trans "Create new thread" %}
{% for thread in forum.threads %} {% cycle cls through "row1", "row2" %} {% elsefor %} {% endfor %}
{% trans "Threads" %} {% trans "Posts/Views" %} {% trans "Last Post" %}
{{ thread.title|e }} {% trans "by" %} {% if thread.author.registered %} {{ thread.author.username|e }} {% else %} {{ thread.author.username|e }} {% endif %} {{ thread.post_count }}/{{ thread.view_count }} {% trans "by" %} {% if thread.last_post.author.registered %} {{ thread.last_post.author.username|e }} {% else %} {{ thread.last_post.author.username|e }} {% endif %} ({{ thread.last_post.timestamp|timedeltaformat }})
{% trans "No threads found" %}
{% endblock %}