{% extends 'learning/base.html' %} {% block content %}

Instructor Dashboard

Your Courses

    {% for data in course_data %}
  • Enrolled: {{ data.enrollment_count }} | Completed: {{ data.completed_count }} | Avg Progress: {{ data.avg_progress }}%
  • {% empty %}
  • You have no courses yet. Start creating courses!
  • {% endfor %}
{% endblock %}