{% extends "base.html" %} {% block title %}{{ category.name }} - EcoCycle Forum{% endblock %} {% block styles %} {% endblock %} {% block content %}

{{ category.name }}

{{ category.description }}

{% if current_user.is_authenticated %} {% endif %}
{% if topics %}
Topic
Replies
Views
Last Activity
{% for topic in topics %}
{% if topic.pinned %} {% endif %}
{{ topic.title }} {% if topic.created_at|age_days < 3 %} New {% endif %}
{{ topic.username }} {{ topic.username }} {{ topic.created_at|timeago }}
{{ topic.reply_count }}
{{ topic.views }}
{% if topic.last_activity %} {{ topic.last_activity|timeago }} {% else %} No replies yet {% endif %}
{% endfor %}
{% if pagination.total_pages > 1 %}
{% endif %} {% else %}

No topics have been created in this category yet.

{% if current_user.is_authenticated %} Create the first topic {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}