{% extends "admin_base.html" %} {% load custom_filters %} {% load static %} {% block content %}
{% for topic in topics %} {% empty %} {% endfor %}
S.N. Topic Added By Actions
{{ forloop.counter|add:topics.start_index|add:"-1" }} {{ topic.title }} {% with user=users_dict|get_item:topic.user %} {{ user.first_name|default:"" }} {% endwith %}
No topics found. Please add a new topic.
{% if topics.has_previous %} First Previous {% endif %} Page {{ topics.number }} of {{ topics.paginator.num_pages }} {% if topics.has_next %} Next Last {% endif %}
{% endblock %}