{% extends 'pybb/base.html' %} {% load pybb_extras %} {% load i18n %} {% load humanize %} {% load wlprofile_extras %} {% load custom_date %} {% load pagination_tags %} {% load static %} {% block extra_head %} {{ block.super }} {% endblock %} {% block title %} {{ forum.name }} - {{ block.super }} {% endblock %} {% block content_header %}

Forum: {{ forum }}

{% endblock %} {% block content_tabbing %} {% endblock %} {% block content_main %}
{% autopaginate topics page_size as object_list %} {% paginate using "pagination/pagination_mod.html" %} {% for topic in object_list %} {% if not topic.is_hidden %} {% elif user_is_mod %} {% endif %} {% endfor %}
Title Last Post by
{% if topic|pybb_has_unreads:user %} {% else %} {% endif %} {% if topic.sticky %}Sticky{% endif %} {% if topic.closed %}Closed{% endif %} {{ topic.name }}
Created by {{ topic.user|user_link }} on {{ topic.created|custom_date:user }}
Posts: {{ topic.post_count }}
Views: {{ topic.views }}
{%if topic.last_post %} {{ topic.last_post.user|user_link }} »
on {{ topic.last_post.created|custom_date:user }} {% endif %}
Hidden Topic: {{ topic.name }}
{% trans {% trans "New Topic" %} {% paginate %}
= Unread posts = No unread posts
{% endblock %}