{% extends 'punkweb_bb/base.html' %} {% load static humanize_int %} {% block title_prefix %}{{subcategory.name}} | {% endblock%} {% block extra_head %} {% endblock %} {% block content %}

{{subcategory.name}}

{% if request.user.is_authenticated %} {% if not subcategory.staff_post_only or request.user.is_staff %} Create Thread {% else %} {% endif %} {% endif %}
{% for thread in threads %} {% endfor %}
Title Posts Views
{{thread.title}} {% if thread.is_pinned %} keep {% endif %} {% if thread.is_closed %} lock {% endif %}
{{thread.user.username}} • {{thread.created_at|date:'M j, Y'}}
{{thread.post_count}} {{thread.view_count | humanize_int}} {% if thread.latest_post %}
{% if thread.latest_post.user.profile.image %} {% else %} {% endif %}
{% else %} No posts {% endif %}
{% if threads.has_other_pages %} {% endif %} {% endblock %}