{% extends 'base.html' %} {% load static %} {% block contentbody %}
| Enquiry Info | Student Details | Previous Academic Information | Program Interested For | Action | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
ENQ-{{enq.id}} E.D: {{enq.enq_date|date:"M d, Y"}}E.M: {{enq.otherdetails.enquiry_mode}} Agent: {{enq.otherdetails.agent}} Categories: {% if enq.followupcommunication_set.first.categories %} {{enq.followupcommunication_set.first.categories}} {%else%} New {%endif%} |
{{enq.student_name|upper}}
DOB: {{enq.dob}} Phone: {{enq.mobile_number}} City: {{enq.address}} Email: {{enq.email}} Updates By: {{enq.comment_set.first.created_by}} |
{% if enq.previousacademicdetail_set.first.program_level == "10 Plus 2 | A Level" %}
Level: {{enq.previousacademicdetail_set.first.program_level}}
Grade: {{enq.previousacademicdetail_set.first.grade_percentage}} Pass Year: {{enq.previousacademicdetail_set.first.passed_year}} Stream: {{enq.previousacademicdetail_set.first.stream}} {% elif enq.previousacademicdetail_set.first.program_level == "Diploma | PCL" %} Level: {{enq.previousacademicdetail_set.first.program_level}} Grade: {{enq.previousacademicdetail_set.first.grade_percentage}} Pass Year: {{enq.previousacademicdetail_set.first.passed_year}} Degree: {{enq.previousacademicdetail_set.first.degree_name}} Awarding body: {{enq.previousacademicdetail_set.first.awarding_body}} Duration: {{enq.previousacademicdetail_set.first.duration}} years {% else %} Level: {{enq.previousacademicdetail_set.first.program_level}} Grade: {{enq.previousacademicdetail_set.first.grade_percentage}} Pass Year: {{enq.previousacademicdetail_set.first.passed_year}} Degree:: {{enq.previousacademicdetail_set.first.degree_name}} Uni: {{enq.previousacademicdetail_set.first.awarding_body}} Duration: {{enq.previousacademicdetail_set.first.duration}} years {% endif %} {{enq.testscore_set.first.english_test}}:{{enq.testscore_set.first.secured_points}} {{enq.testscore_set.first.standarized_test}}:{{enq.testscore_set.first.standrized_points}} |
Last Comment: {{enq.comment_set.last}} |
{% if perms.enquiry.add_personalinfo %}
{% if enq.assign_to.id == request.user.id or request.user.is_superuser == True %} {% endif %} {% endif %} {% if perms.enquiry.change_personalinfo %} {% if enq.assign_to.id == request.user.id or request.user.is_superuser == True %} {% endif %} {% endif %} {% if perms.enquiry.delete_personalinfo %} {% if enq.assign_to.id == request.user.id or request.user.is_superuser == True %} {% endif %} {% endif %} |