{% extends "partials/base.html" %} {% load static %} {% load custom_filters %} {% block content %}
{% include 'partials/error-meg.html' %}
{% block title %} {% include "partials/title.html" with title="Assign Class" text="Dashboard" textone="Teacher" texttwo="Assign Class"%} {% endblock title %}
{% if username == 'visamanager' %}Visa Manager{% else %} {{username}} - {{profiledata.first_name}} {{profiledata.last_name}} {% endif %}
Back
{% if assign_data|length > 0 %}
{% for row in assign_data %} {% empty %} {% endfor %}
Sr. No. Course Classes Modules Intake Year & Month Status Action
{{ forloop.counter }} {{ row.course }} {{ row.classes }} {{ row.modules }} {{ row.intakemonth }} {% if row.is_deleted == False %} Active {% else %} Inactive {% endif %}
No Assgin Class
{% else %}
No Assgin Class
{% endif %}
{% endblock content %} {% block javascript %} {{ block.super }} {% endblock %}