{% extends 'myadmin/base_myadmin.html' %} {% block title %}Inspection Report | {{ report.report_title }} | MyAdmin{% endblock %} {% block content %}
Inspection Report

{{ report.report_title }}

Formal property inspection report for {{ property.property_name }}, prepared from the visit {{ visit.visit_title }}.

Report Photos
{{ total_photos }}
Owner Visible Photos
{{ owner_visible_photos }}
Issue Evidence Photos
{{ issue_photos }}
Urgency
{% if report.urgent_action_required %} Urgent {% else %} Normal {% endif %}

Report Information

Publication status, dates, and staff tracking.

Report Status
{{ report.get_report_status_display }}
Inspection Date
{% if report.inspection_date %} {{ report.inspection_date|date:"M d, Y" }} {% else %} Not set {% endif %}
Urgent Action Required
{% if report.urgent_action_required %} Yes {% else %} No {% endif %}
Published to Owner
{% if report.is_published_to_owner %} Yes {% if report.published_at %} — {{ report.published_at|date:"M d, Y H:i" }} {% endif %} {% else %} No {% endif %}
Prepared By
{% if report.prepared_by %} {{ report.prepared_by.get_full_name|default:report.prepared_by.username }} {% else %} Not recorded {% endif %}
Approved By
{% if report.approved_by %} {{ report.approved_by.get_full_name|default:report.approved_by.username }} {% else %} Not approved yet {% endif %}

Visit & Property Reference

Source maintenance visit and related property context.

Property
{{ property.property_name }}
Owner
{{ property.owner.full_name|default:property.owner.email }}
Visit
{{ visit.visit_title }}
Visit Type
{{ visit.get_visit_type_display }}
Visit Status
{{ visit.get_visit_status_display }}
Visited By
{% if visit.visited_by %} {{ visit.visited_by.get_full_name|default:visit.visited_by.username }} {% else %} Not assigned {% endif %}

Condition Assessment

Structured property condition summary prepared during inspection reporting.

Overall Condition

{{ report.get_overall_condition_display }}

Cleanliness

{{ report.get_cleanliness_status_display }}

Garden / Outdoor

{{ report.get_garden_status_display }}

Security

{{ report.get_security_status_display }}

Utilities

{{ report.get_utility_status_display }}

Structural

{{ report.get_structural_status_display }}

Issues Found

{{ report.issues_found|default:"No issues recorded."|linebreaksbr }}

Recommendations

{{ report.recommendations|default:"No recommendations recorded."|linebreaksbr }}

Owner Visible Summary

{{ report.owner_visible_summary|default:"No owner-visible summary added yet."|linebreaksbr }}

Internal Staff Note

Operational note visible to Ensolanka staff only.

{{ report.internal_staff_note|default:"No internal staff note added yet."|linebreaksbr }}

Inspection Report Photos

Curated report images for issues, condition evidence, recommendations, and future owner visibility.

Add Report Photo
{% if photos %}
{% for photo in photos %}
{{ photo.caption|default:'Inspection report photo' }}
{{ photo.get_photo_type_display }}
{% if photo.caption %} {{ photo.caption }}
{% endif %} Uploaded: {{ photo.uploaded_at|date:"M d, Y H:i" }}
Visibility: {% if photo.is_owner_visible %} Owner Visible {% else %} Internal {% endif %}
{% csrf_token %}
{% endfor %}
{% else %}
No inspection report photos have been uploaded yet.
{% endif %}
{% endblock %}