Course
Hub
Dashboard
← Back
Students in Course {{ course_id }}
Completed Students
Total Students:
{{ total_students }}
{% if messages %}
{% for message in messages %}
{{ message }}
{# Using safe to render HTML properly #} {% endfor %}
{%endif%}
Student ID
Full Name
Email
Certify
{% for student in students %}
{{ student.userId }}
{{ student.profile.name.fullName }}
{{ student.profile.emailAddress }}
{% csrf_token %}
{% if student.userId in completed_students %}
Completed
{% else %}
Mark as Complete
{% endif %}
{% endfor %}