{% extends "partials/base.html" %} {% load static %} {% block content %}
{% block pagetitle %} {% include "partials/page-title.html" with pagetitle="Dashboard" title="Assgin Class List" %} {% endblock pagetitle %}

All Assgin Class List

{% if assign_data|length > 0 %}
{% for row in assign_data %} {% empty %} {% endfor %}
Sr. No. Course Classes Modules Intake Year & Month
{{ forloop.counter }} {{ row.course }} {{ row.classes }} {{ row.modules }} {{ row.intakemonth }}
No Assgin Class
{% else %}
No Assgin Class
{% endif %}
{% endblock content %}