{% extends "tribes/base.html" %} {% load i18n %} {% load uni_form %} {% load pagination_tags %} {% block head_title %}{% blocktrans with group.name as group_name %}Topics for Tribe {{ group_name }}{% endblocktrans %}{% endblock %} {% block body %}

{% trans "Discussion Topics for Tribe" %} {{ group.name }}

{% autopaginate topics %} {% for topic in topics %} {% include "topics/topic_item.html" %} {% endfor %} {% paginate %} {% if is_member %}

{% trans "New Topic" %}

{{ topic_form|as_uni_form }}
{% endif %} {% endblock %}