{% extends 'base.html' %} {% block pagetitle %}Topics list{% endblock %} {% block main %}

Current active topic

{% if user.current_task.topic %}
{{ user.current_task.topic.title }}
{{ user.current_task.topic.seed_query }}
{% endif %}

Your created topics

Add new topic
{% for topic in object_list %} {% if topic == user.current_task.topic %}{% else %}
{{ topic.title }}
{{ topic.seed_query }}
{% csrf_token %}
{% csrf_token %}
{% endif %} {% endfor %} {% endblock %}