{%extends 'base.html'%} {%load staticfiles%} {% block head_block%} {% endblock %} {% block body_head_title %}

Welcome {{user.get_full_name}}

{% endblock %} {%block body_block%}

Details of {{student.user.get_full_name}}

Name {{student.user.get_full_name}} Username {{student.user.username}}
Care of {{student.care_of}} Father's Name {{student.father_name}}
Mother's Name {{student.mother_name}} Gender {{student.gender}}
Date of Birth {{student.date_of_birth}} Category {{student.category}}
Token {{student.token.token}} Adhar Card Number {{student.adhar_card_number}}
Photo Signature
Thumb impression Email {{student.user.email}}
Courses
    {% for course in student.courses.all%}
  1. {{course}}
  2. {%endfor%}
Occupation {{student.occupation}}
Mobile No. {{student.mobile}} Address {{student.address}}
City {{student.city}} State {{student.state}}
PIN Code {{student.pin_code}} Highest Qualification {{student.highest_educational_qualification}}
Year of Passing {{student.year_of_passing}}
{%endblock%}