{% extends "hostel_app/base.html" %} {% load staticfiles %} {% block body_block %}

Student List



{% if student_list %}
    {% for student in student_list %}
  1. Roll No. : {{student.user.username | upper}} Name. : {{student.student_name}}
  2. {% endfor %}
{% endif %} {% endblock %}