{% extends "layout.html" %} {% block title %}{{ category.name }} - Community Forum{% endblock %} {% block breadcrumb %} Home / Categories / {{ category.name }} {% endblock %} {% block content %}

{{ category.name }}

{% if category.description %}

{{ category.description }}

{% endif %}
{% if current_user.is_authenticated %} New Topic {% endif %}
{% if topics.items %}
Topic
Last Post
{% for topic in topics.items %}
{% if topic.is_pinned %} {% elif topic.is_locked %} {% else %} {% endif %}
{{ topic.title }} {% if topic.tags %}
{% for tag in topic.tags %} {{ tag.name }} {% endfor %}
{% endif %}
Started by {{ topic.author.username }}, {{ topic.created_at.strftime('%b %d, %Y') }}
{% set last_post = topic.last_post() %} {% if last_post %}
{{ last_post.author.username }}
{{ last_post.created_at.strftime('%b %d, %Y') }}
{% else %} No replies yet {% endif %}
{% endfor %}
{% if topics.pages > 1 %}
{% endif %} {% else %}

No topics have been created in this category yet.

{% if current_user.is_authenticated %} Create First Topic {% endif %}
{% endif %}
{% endblock %}