{% extends "hostel_app/base.html" %} {% load staticfiles %} {% block body_block %}
{% csrf_token %} {% if student_form.errors %} {% endif %}
{% if boys_hostel %}

Boys Hostel

{% for hostel in boys_hostel %}

{{hostel.hostel_name}}

{% endfor %} {% endif %} {% if girls_hostel %}

Girls Hostel

{% for hostel in girls_hostel %}

{{hostel.hostel_name}}

{% endfor %} {% endif %}

{% endblock %}