{% extends "base.html" %} {% block title %}{{ category_name }} — {{ community_name }} — Multithreaded{% endblock %} {% block head %}{% endblock %} {% block header %}{% include "partials/site_header.html" %}{% endblock %} {% block content %}
{% if !available_tags.is_empty() %}
Tags: all {% for tag in available_tags %} {{ tag.name }} {% endfor %}
{% endif %} {% if threads.is_empty() %}
No threads yet. Start one.
{% else %} {% for t in threads %} {% endfor %}
Thread Author Replies{% if sort_column == "replies" %}{% if sort_order == "desc" %} ↓{% else %} ↑{% endif %}{% endif %} Last Activity{% if sort_column == "activity" %}{% if sort_order == "desc" %} ↓{% else %} ↑{% endif %}{% endif %}
{% if t.pinned %}[pinned] {% endif %} {% if t.locked %}[locked] {% endif %} {% if t.has_mention %}@ {% endif %} {{ t.title }} {% for tag in t.tags %} {{ tag.name }} {% endfor %} {{ t.author_name }} {{ t.reply_count }} {{ t.last_activity }}
{% if pagination.total_pages > 1 %} {% endif %} {% endif %}
{% endblock %}