{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}
{% trans "Marker Details" %}
{% trans "Label" %} {{ object.label|placeholder }}
{% trans "Type" %} {{ object.get_marker_type_display }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Site" %} {% if object.site %} {{ object.site }} {% else %} {% endif %}
{% trans "Position" %} {{ object.latitude }}, {{ object.longitude }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Assigned Object" %} {% if object.assigned_object %} {{ object.assigned_object }} {% else %} {% endif %}
{% trans "Camera FOV" %}
{% trans "Direction" %} {{ object.fov_direction }}°
{% trans "Angle" %} {{ object.fov_angle }}°
{% trans "Distance" %} {{ object.fov_distance }}
{% trans "Actions" %}
{% endblock %}