{% extends 'base.html' %} {% load i18n %} {% load bootstrap3 %} {% block main %} {% include 'message_block.html' %}
{% csrf_token %}

{% trans 'Map point' %}

{# title input #} {% bootstrap_icon 'edit' as ic %} {% bootstrap_field form.title addon_before=ic %} {# longitude input #} {% bootstrap_icon 'globe' as ic %} {% bootstrap_field form.longitude addon_before=ic %} {# latitude input #} {% bootstrap_icon 'globe' as ic %} {% bootstrap_field form.latitude addon_before=ic %} {# attachment input #} {% bootstrap_field form.attachment %}
{% if dot.id %}

{% trans 'Devices' %}

{% for dev in dot.devices.all %} {% empty %} {% endfor %}
{% if dev.user_group %} {{ dev.comment }} {% else %} {{ dev.comment }} {% endif %} {{ dev.ip_address }} {{ dev.get_comment_display }} {% if dev.user_group %} {{ dev.user_group }} {% else %} {% trans 'User group has no attached' %} {% endif %}
{% trans 'Devices not found' %}
{% endif %}
{% endblock %}