{% extends "public/base.html" %} {% block title %}Students | {{ profile.name if profile }}{% endblock %} {% block content %}

{{ stats.phd_total }}

{{ profile.students_stat1_label or 'Total PhD' }}

{{ stats.phd_completed }}

{{ profile.students_stat2_label or 'PhD Completed' }}

{{ stats.phd_ongoing }}

{{ profile.students_stat3_label or 'PhD Ongoing' }}

{{ stats.mtech_total }}+

{{ profile.students_stat4_label or 'MTech Supervised' }}

{% if phd_students %}

{{ profile.students_phd_title or 'PhD_Scholars' }}

{% for student in phd_students %} {% endfor %}
No. Student Name Thesis Title Status Category Single/Joint
{{ loop.index }} {{ student.name }} {{ student.thesis_title or '-' }} {{ student.category or '-' }} {{ student.supervision or '-' }}
{% endif %} {% if mtech_students %}

{{ profile.students_mtech_title or 'MTech_Students' }}

{% for student in mtech_students %} {% endfor %}
No. Student Name Thesis Title Status
{{ loop.index }} {{ student.name }} {{ student.thesis_title or '-' }}
{% endif %} {% endblock %}