{%extends 'base.html'%} {% block body_head_title %}

Welcome {{user.get_full_name}}

{% endblock %} {% block body_block%}

Student Details

{% if msg %} {%if update_form.errors%}
{%else%}
{%endif%} {{msg}}
{%endif%} {% if user.is_authenticated and group in user.groups.all %}
{{student.user.get_full_name}}
{{student.user.username}}
{{student.care_of}}
{{student.father_name}}
{{student.mother_name}}
{{student.gender}}
{{student.date_of_birth}}
{{student.category}}
{{student.token.token}}
{{student.adhar_card_number}}
{% csrf_token %} {% for field in update_form.visible_fields%}
{%ifequal field.name 'photo'%}
{%endifequal%} {%ifequal field.name 'signature'%}
{%endifequal%} {%ifequal field.name 'left_thumb_impression'%}
{%endifequal%} {{field}}
    {% for error in field.errors%}
  • {{error}}
  • {%endfor%}
{%endfor%}
{%endif%}
{%endblock%}