{% extends "forum/base.html" %} {% load i18n crispy_forms_tags forum_markup %} {% block forum_content %}
{% for post in object_list %}

{{ post.author }} #{{ post.id }}

{% blocktrans with created_date=post.created|timesince %}Since {{ created_date }}{% endblocktrans %}

{% comment %}{% text_transform post.text %}{% endcomment %} {{ post.text|linebreaks }}
{% if perms.forum.change_post or perms.forum.delete_post %}
{% blocktrans %}Reply{% endblocktrans %} {% if perms.forum.change_post %}{% blocktrans %}Edit{% endblocktrans %} {% endif %} {% if not forloop.first and perms.forum.delete_post %}{% blocktrans %}Delete{% endblocktrans %}{% endif %}
{% endif %} {% if post.modified > post.created %}

{% blocktrans with modified_date=post.modified|timesince %}Edited since {{ modified_date }}{% endblocktrans %}

{% endif %}
{% endfor %} {% comment %}{% pagination_tag %}{% endcomment %} {% include 'forum/pagination.html' %}
{% if form %}

{% blocktrans %}New message{% endblocktrans %}

{% crispy form %} {% else %}

{% blocktrans %}This thread is closed, you can't add it a new post{% endblocktrans %}

{% endif %} {% endblock %}