{% extends "hostel_app/base.html" %} {% load staticfiles %} {% block body_block %}
Student List
{% if student_list %}
{% for student in student_list %}
Roll No. :
{{student.user.username | upper}}
Name. :
{{student.student_name}}
{% endfor %}
{% endif %} {% endblock %}