26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{% extends 'map/base_change.html' %}
|
|
{% load crispy_forms_filters %}
|
|
|
|
{% block title %}Change your location{% endblock %}
|
|
{% block h1 %}Change your location{% endblock %}
|
|
|
|
{% block notice %}
|
|
<div class="alert alert-info">
|
|
<h4 class="alert-heading">Notice</h4>
|
|
<div>
|
|
You can find the GPS coordinates of your place with
|
|
<a class="alert-link" href="https://www.openstreetmap.org">OpenStreetMap</a>
|
|
(right click, show address, and the coordinates are displayed in the left panel).
|
|
</div>
|
|
<hr>
|
|
<div>
|
|
The precision of the GPS coordinates is at your own discretion. Please note that they will be stored
|
|
directly in the database in order to be displayed to other users.
|
|
If you want to protect your privacy, you are advised to choose a location at the center of a large city near
|
|
you.
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block form-buttons %}
|
|
<button type="submit" class="btn btn-primary"><i class="fas fa-map-marker-alt"></i> Save</button>
|
|
{% endblock %}
|