{% extends "repo.html" %} {% set active_page = "forum" %} {% block title %} {% trans username=username, repository=repository %}Forum of {{ username }}/{{ repository }}{% endtrans %} {% endblock %} {% block content %}
{% for post in results %}
{% if post.state == 0 %}
{% trans %}done{% endtrans %}
{% elif post.state == 1 %}
{% trans %}active{% endtrans %}
{% endif %}

{{ post.subject }}

• {{ post.date | strftime("%A, %e %B %Y, %H:%M:%S") }}

{{ post.html | safe }}

{% endfor %}
{% include "pagination.html" %}
{% endblock %}