{% extends "base.html" %} {% load staticfiles i18n %} {% block extra_header %} {% endblock %} {% block title %}{% trans 'Forum' %} {{ forum.title }}{% endblock %} {% block content %}
 {{ forum.title|truncatewords:3 }}

 {{ forum.title }}

{% if topic.is_closed != True %}  {% trans 'Post a response' %} {% endif %}
{% include "mgof/topic/paginate.html" %}
 {{ topic.title }}
{% for post in posts %}
{% if comes_from_moderation and post.pk == post_to_moderate_pk %} {% trans 'This post will be deleted. Are you sure?' as question %}
 {% trans 'Post to moderate' %}
{% endif %} {{ post.content|safe }}
{% if comes_from_moderation and post.pk == post_to_moderate_pk %}
{% include "mgof/post/moderate_actionbar.html" %}
{% else %} {% if topic.is_closed != True %} {% endif %} {% if topic.is_closed != True %}  {% trans 'Post a response' %} {% endif %} {% endif %}
{% trans "Posted by" %} {{ post.editor.username }}
{{ post.edited }}
{% endfor %}
{% if topic.is_closed == True %}
{% trans 'This topic is closed' %}
{% trans 'This topic is closed' %}
{% endif %}
{% include "mgof/topic/paginate.html" %}
 {{ forum.title|truncatewords:3 }} {% if topic.is_closed != True %}  {% trans 'Post a response' %} {% endif %}
{% endblock %}