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

{{ post.subject }} #{{ post.number }} ({{ post.children | length }})

{{ post.owner.username }}

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