{% extends "base.html" %} {% block content %}

Inspection & Exit History


Unit Inspections
{% for i in inspections %} {% endfor %}
Unit Tenant Notes Date
{{ i.unit.unit_number }} {{ i.tenant.get_full_name }} {{ i.notes }} {{ i.created_at }}

Exit Records
{% for e in exits %} {% endfor %}
Tenant Unit Type Reason Date
{{ e.tenant.get_full_name }} {{ e.unit.unit_number }} {{ e.exit_type }} {{ e.reason }} {{ e.created_at }}
{% endblock %}