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

Welcome {{user.get_full_name}}

{% endblock %} {%block body_block%}

Student List

{%for student in students%} {%endfor%}
Sr. No Name Token Photo Signature Thumb
{{forloop.counter}} {{student.user.get_full_name}} {{student.token.token}}
{%endblock%}