{% extends 'base.html' %} {% load i18n %} {% block main %} {% include 'message_block.html' %} {% with can_change_dot=perms.mapapp.change_dot can_delete_dot=perms.mapapp.delete_dot %}

{% trans 'Map point' %}

{% if can_change_dot or can_delete_dot %}{% endif %} {% for dot in dots %} {% if can_change_dot or can_delete_dot %} {% endif %} {% empty %} {% endfor %}
{% trans 'Title' %} {% trans 'Longitude' %} {% trans 'Latitude' %}#
{{ dot.title }} {{ dot.longitude }} {{ dot.latitude }} {% if can_change_dot %} {% endif %} {% if can_delete_dot %} {% endif %}
{% trans 'You have not created map points yet' %} {% trans 'Create' %}
{% endwith %} {% include 'toolbar_page.html' with pag=dots %} {% endblock %}