{% extends 'partials/base.html' %} {% load static %} {% block content %} {% load custom_filters %}
{% block title %} {% include 'partials/title.html' with title='Edit Student' text='Dashboard' textone='Students' texttwo='Edit Student' %} {% endblock %}
{% include 'partials/error-meg.html' %}

Student Details

{{ student.student_name|default:'' }} {{ student.student_last|default:'' }}

{{ student.program|default:'' }}

{{ student.intake_year|default:'' }}

{{ student.intake_month|default:'' }}

{{ student.student_email|default:'' }}

{{ student.student_owner_name|default:'' }}

{{ student.student_owner_email|default:'' }}

{{ student.passport_no|default:'' }}

{% comment %}

{{ student.date_of_birth|default:'' }}

{% endcomment %} {% comment %}

{{ student.place_of_birth|default:'' }}

{% endcomment %} {% comment %}

{{ student.whatsapp_no|default:'' }}

{% endcomment %}

{{ student.sender_name|default:'' }}

{{ student.total_fees|default:'' }}

{% comment %}

{% if student.discount %}{{ student.discount|default:'' }}{% else %}N/A {%endif%}

{% if student.discount %}{{ student.after_discount|default:'' }}{% else %}No Scholarship {%endif%}

{% endcomment %}

{{ student.administrative_cost|default:'' }}

{{ student.registration_fees|default:'' }}

{{ student.visa_Application_fees|default:'' }}

{{ student.accommodation_administration_cost|default:'' }}

{{ student.first_year_tuition_fees|default:'' }}

{{ student.received_amount|default:'0' }} €

{{ student.balance_fees|default:'0' }} €

{{ student.fees_paid_status|default:'' }}

{% if student.zoho_lead_id and student.year_1_tt_copy %} View Attachment {% else %}

No attachment found.

{% endif %}
{% if request.user.role == "visa_manager" %}
{% if student.zoho_lead_id and visa_student.year_3_tt_copy %} View Attachment {% else %}

No attachment found.

{% endif %}
{% if student.zoho_lead_id and visa_student.final_admission_letter %} View Attachment {% else %}

No attachment found.

{% endif %}
{% if student.zoho_lead_id and visa_student.year_2_tt_copy %} View Attachment {% else %}

No attachment found.

{% endif %}

{{ visa_student.visa_process|default:'N/A' }}

{% endif %}

{% if student.tt_copy_remark %}{{ student.tt_copy_remark|default:'' }}{% else %}N/A {%endif%}

{% if request.user.role == "visa_manager" %}
Attachments
{% for attachment in attachments %} {% empty %} {% endfor %}
File Name Date Added Size View
{{ attachment.created_time }}
No attachments found
{% endif %} {% if not request.user.role == "accounted" %}
Student Upload Document for Visa
{% for doc in sorted_document_list %} {% with crm_documents|get_item:doc as crm_file %} {% if crm_file %} {% else %} {% with visastudentdocuments|get_item:doc as uploaded_doc %} {% if uploaded_doc %} {% else %} {% endif %} {% endwith %} {% endif %} {% endwith %} {% endfor %}
File Name Date Added View Status
{{ doc }}CRM uploaded Approved (CRM) {{ uploaded_doc.uploaded_at|date:"Y-m-d H:i" }} {{ uploaded_doc.get_status_display }} Not uploaded
{% endif %}
{% include "partials/remark.html" %}
{% endblock %} {% block javascript %} {{ block.super }} {# This keeps scripts from base.html #} {% endblock %}