{% extends 'myadmin/base_myadmin.html' %} {% block title %}Upload Inspection Report Photo | MyAdmin{% endblock %} {% block content %}
Inspection Report Media

Upload Inspection Report Photo

Add curated report imagery for {{ report.report_title }}. These photos may be used as condition evidence, issue references, or owner-visible inspection attachments.

Photo Details

Upload a clear image and classify how it should support the inspection report.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.image }} {% if form.image.help_text %}
{{ form.image.help_text }}
{% endif %} {% if form.image.errors %}
{{ form.image.errors|striptags }}
{% endif %}
{{ form.photo_type }} {% if form.photo_type.help_text %}
{{ form.photo_type.help_text }}
{% endif %} {% if form.photo_type.errors %}
{{ form.photo_type.errors|striptags }}
{% endif %}
{{ form.caption }} {% if form.caption.help_text %}
{{ form.caption.help_text }}
{% endif %} {% if form.caption.errors %}
{{ form.caption.errors|striptags }}
{% endif %}
{{ form.is_owner_visible }}
{% if form.is_owner_visible.help_text %}
{{ form.is_owner_visible.help_text }}
{% endif %} {% if form.is_owner_visible.errors %}
{{ form.is_owner_visible.errors|striptags }}
{% endif %}
Report photos are validated and compressed automatically after upload, based on the image rules configured in the model.
Back to Report

Report Reference

Confirm the inspection-report context before uploading the image.

Report
{{ report.report_title }}
Property
{{ property.property_name }}
Visit
{{ visit.visit_title }}
Inspection Date
{% if report.inspection_date %} {{ report.inspection_date|date:"M d, Y" }} {% else %} Not set {% endif %}
Report Status
{{ report.get_report_status_display }}
Owner
{{ property.owner.full_name|default:property.owner.email }}
{% endblock %}