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

Welcome {{user.get_full_name}}

{% endblock %} {%block body_block%}

Details of {{student.user.get_full_name}}

{%if msg%} {%if form.errors%}
{%else%}
{%endif%} {{msg}}
{%endif%}
{%csrf_token%} {% for field in 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%}
{%endblock%}