{% 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.

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.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Cancel
{% endblock %}