{% extends "admin/base.html" %} {% block content %}

Topic Management

Manage all learning topics across the platform

{% for category, topics in categories.items() %}

{{ category }} {{ topics|length }}

{% for topic in topics %}

{{ topic.title }}

{% if topic.is_published %}Published{% else %}Draft{% endif %}
{{ topic.teacher.username }} {{ topic.created_at|timeago }}
Students
{{ topic.student_count|default(0) }}
Questions
{{ topic.comprehension_questions|length }}
Completed
{{ topic.completion_count|default(0) }}
PDF
{% endfor %}
{% else %}

No Topics Available

There are no topics available yet.

{% endfor %}
{% endblock %}