{% extends 'forum/base.html' %} {% load thumbnail paginate static %} {% block stage %}
{% include 'forum/left_menu.html' %} {% paginate 20 topic_list %}

All Topics {% if request.user.is_authenticated %}New Topic{% endif %}

{% for topic in topic_list %}
    {% for user in topic.get_topic_users %}
  • {% endfor %}
{% if topic.created_by == request.user %} Update delete {% endif %}

{% endfor %} {% show_pages %}
{% endblock %}