{% extends "base.html" %} {% block title %}{{ category.title }} · {{ site.title }}{% endblock %} {% block canonical %}/categories/{{ category.id }}/{% endblock %} {% block description %}{{ category.description }}{% endblock %} {% block content %}

{{ category.kind }} board

{{ category.title }}

{{ category.description }}

{% for thread in threads %} {% set status = service.thread_status(thread.id) %}
{% if status.effective_state != 'open' %}{{ status.effective_state }}{% if status.capacity %} · {{ status.contribution_count }} of {{ status.capacity }}{% endif %}{% endif %}

{{ thread.title }}

{{ thread.summary }}

{% if thread_tags.enabled %}{% for tag in thread.tags %}{{ tag }}{% endfor %}{% endif %}
{{ service.contributions_for_thread(thread.id)|length }}{% if service.contributions_for_thread(thread.id)|length == 1 %}{{ ui.post_singular }}{% else %}{{ ui.post_plural }}{% endif %}
{% else %}

Nothing has been recorded here yet.

{% endfor %}
{% endblock %}