{% 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 process %}of {{ process }}{% endif %}

{% if students_list %} {% for student in students_list %} {% endfor %} {% else %} {% endif %}
ID Name Email Fees Paid Status Action
{{ forloop.counter }} {% if user.role == 'accounted' %} {% if student.student.payment_confirmation %} {% else %} {% endif %} {% endif %} {{ student.student.student_name }} {{ student.student.student_last }} {{ student.student.student_email }} {{ student.student.fees_paid_status }}
{% if user.role == 'visa_manager' %} {%if student.student.payment_confirmation and not student.visa.submit_in_embassy == 'Visa Success' %} Send mail {%endif%} {%endif%}
No records found.
{% comment %} {% endcomment %}
{% endblock %} {% block javascript %} {{ block.super }} {# This keeps scripts from base.html #} {% endblock %}