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

{{ topic.title }}

{{ topic.views }} views {{ pagination.total_count }} replies {{ topic.created_at|datetime }}
{% if current_user.is_authenticated and (current_user.id == topic.author_id or current_user.is_admin) %} {% endif %} {% if current_user.is_authenticated %} {% endif %}
{{ topic.content|safe }}
{% if topic.edited %}
Last edited: {{ topic.updated_at|timeago }}
{% endif %}
{% for post in posts %}
{% if current_user.is_authenticated %} {% endif %} {% if current_user.is_authenticated and (current_user.id == post.author_id or current_user.is_admin) %} {% endif %} {% if current_user.is_authenticated %} {% endif %}
{{ post.content|safe }}
{% if post.edited %}
Last edited: {{ post.updated_at|timeago }}
{% endif %}
{% endfor %} {% if pagination.total_pages > 1 %}
{% endif %} {% if current_user.is_authenticated %}

Post a Reply

{% else %}

You need to sign in to post a reply.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}