{% extends 'admin_dash/base.html' %} {% load static %} {% load humanize %} {% block content %}
{% for field in form %} {% for error in field.errors %} {% endfor %} {% endfor%} {% for course in webCourses %}

{{course}}

{% for reg in reg_users %} {% if reg.course == course %} {% endif %} {% endfor %}
Bacth No Name REG ID Paid Slot No Completed
{{reg.batch_no}} {{reg.user.get_full_name}} {{reg.registration_id}} {{reg.paid}} {{reg.number_of_slots}} {{reg.completed}}
{% endfor %}
{% endblock content %}