{% extends 'base.html' %} {% load static %} {% block content %}

PhD : Awarded: {{phdAwarded}}, Submitted: {{phdSubmitted}}, In-Progress: {{phdInProgress}}

MTech/M.Sc: Awarded: {{mtechAwarded}}, Submitted: {{mtechSubmitted}}, In-Progress: {{mtechInProgress}}

{% regroup researchSupervision|dictsort:"group_type" by group_type as group_list %} {% for researchSupervision in group_list %}

{% for proj in researchSupervision.list %} {% endfor %}
Name Title Year Co-Supervisor Status Year End
{{proj.name}} {{proj.title}} {% if proj.year_start %}{{proj.year_start}} {% endif %} {% if proj.year_end and proj.year_start and not proj.is_in_progress %} - {% endif %} {% if proj.year_end and not proj.is_in_progress %} {{proj.year_end}} {% endif %} {{proj.co_supervisor}} {{proj.process_type}} {{proj.year_end}}
{% endfor %}
{% endblock %}