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

Room has been alotted

Login to view your profile

{% else %}
{% csrf_token %} {% if user_form.errors %} {% endif %} {% if student_form.errors %} {% endif %}
Same as your Roll No.

{% 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 %}

{% endif %}
{% endblock %}