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

Create from location or address

Add a property pin

Use your current GPS position when available, or type/paste the address manually if browser location is blocked, denied, or unsupported. If you paste an address, NearbyNest uses that address for the listing instead of the browser’s current location. If you already have the exact Idealista listing, paste it before publishing.

Choose current location or enter the address below.
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {{ form.latitude }}{{ form.longitude }} {% for field in form.visible_fields %}
{{ field }} {% if field.name == "address" %}
Required if you do not grant current-location access.
{% endif %} {% if field.name == "idealista_url" %}
Optional: manual links are saved first. If empty, NearbyNest creates a best-effort Idealista search link.
{% endif %} {% if field.help_text and field.name != "idealista_url" %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Cancel
{% endblock %}