{% extends "base.html" %} {% block title %}Edit {{ room.room_number }}{% endblock %} {% block page_title %}Edit Room {{ room.room_number }}{% endblock %} {% block content %}
Room Details — {{ room.room_number }}
{% csrf_token %}
Rent
{{ form.rent_per_month }} {% if form.rent_per_month.errors %}
{{ form.rent_per_month.errors }}
{% endif %}
Rental Season
{{ form.season_start_month }}
{{ form.season_start_year }}
{{ form.season_end_month }}
{{ form.season_end_year }}
Current Tenant
{{ form.current_user_name }} {% if form.current_user_name.errors %}
{{ form.current_user_name.errors }}
{% endif %}
{{ form.current_user_phone }} {% if form.current_user_phone.errors %}
{{ form.current_user_phone.errors }}
{% endif %}
{{ form.is_occupied }}
Cancel
{% endblock %}