{% extends 'punkweb_bb/base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block extra_script %} {% endblock %} {% block content %}
{% if punkweb_bb.settings.SHOUTBOX_ENABLED|default:True %} {% include 'punkweb_bb/shoutbox/shoutbox.html' %} {% endif %} {% for category in categories %}
{% for subcategory in category.subcategories.all %} {% endfor %}
{{category.name}} Threads Posts
{{subcategory.name}}
{{subcategory.description}}
{{subcategory.thread_count}} {{subcategory.post_count}} {% if subcategory.latest_thread %} {% if subcategory.latest_thread.latest_post %}
{% if subcategory.latest_thread.latest_post.user.profile.image %} {% else%} {% endif %}
{{subcategory.latest_thread.title}}
{{subcategory.latest_thread.latest_post.user.username}}
{% else %}
{% if subcategory.latest_thread.user.profile.image %} {% else%} {% endif %}
{{subcategory.latest_thread.title}}
{{subcategory.latest_thread.user.username}}
{% endif %} {% else %} No threads {% endif %}
{% endfor %}
Recent threads
{% for thread in recent_threads %}
{% if thread.user.profile.image %} {% else%} {% endif %}
{{thread.title}}
{{thread.user.username}}
{% endfor %}
Statistics
Total threads:
{{thread_count}}
Total posts:
{{post_count}}
Total members:
{{users|length}}
{% if newest_user %} {% endif %}
Members online:
{{users_online|length}}
Staff online:
{{staff_online|length}}
{% endblock %}