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

Create from photo

Upload a property photo

The MVP stores only a resized JPEG under 256KB, checks EXIF GPS, and attempts local OCR. You can also paste the exact Idealista listing link before we create any search fallback.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form.visible_fields %}
{{ field }} {% if field.name == 'photo' %}
Originals are discarded after compression; max upload 12MB.
{% endif %} {% if field.name == 'idealista_url' %}
Optional: paste the exact Idealista listing URL. If empty, NearbyNest creates a best-effort search link.
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Cancel
{% endblock %}