friendsmap/map/templates/map/change_location.html

17 lines
521 B
HTML
Raw Normal View History

2019-03-02 16:17:48 +01:00
{% extends 'map/base.html' %}
{% load crispy_forms_filters %}
{% block h1 %}Change your location{% endblock %}
{% block content %}
2019-03-02 17:56:21 +01:00
<p>
You can find the GPS coordinates of your place with <a href="https://www.openstreetmap.org">OpenStreetMap</a>
(right click, show address, and the coordinates are displayed in the left panel).
</p>
2019-03-02 16:17:48 +01:00
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary">Save</button>
</form>
{% endblock %}