{% extends 'partials/base.html' %} {% load static %} {% load custom_filters %} {% block content %}
{% block pagetitle %} {% include 'partials/page-title.html' with pagetitle='Dashboard' title='Student list' %} {% endblock %}
{% include 'partials/error-meg.html' %}

Student List

{% if students_list %} {% for student in students_list %} {% endfor %} {% else %} {% endif %}
ID Name Email Fees Paid Status Action
{{ forloop.counter }} {{ student.student.student_name }} {{ student.student.student_last }} {{ student.student.student_email }} {{ student.student.fees_paid_status }}
{% if user.role == 'visa_manager' %} {%if student.visa.visa_process == "Prepare Final Admission Letter"%} Send mail {%endif%} {%endif%}
No records found.
{% comment %} {% endcomment %}
{% endblock %} {% block javascript %} {{ block.super }} {# This keeps scripts from base.html #} {% endblock %}