{% extends 'base.html' %} {% load i18n l10n static fontawesome_5 humanize %} {% block head %} {% endblock %} {% block body %}

{{obj.identifier}}

{% include 'ema/detail/includes/controls.html' %}

{% trans 'Title' %} {{obj.title}}
{% trans 'Recorded' %} {% if obj.recorded is None %} {% fa5_icon 'bookmark' 'far' %} {% else %} {% fa5_icon 'bookmark' %} {% endif %}
{% trans 'Conservation office' %} {{obj.responsible.conservation_office|default_if_none:""}}
{% trans 'Conversation office file number' %} {{obj.responsible.conservation_file_number|default_if_none:""}}
{% trans 'Intervention handler' %} {{obj.responsible.handler|default_if_none:""}}
{% trans 'Last modified' %} {% if obj.modified %} {{obj.modified.timestamp|default_if_none:""|naturalday}}
{{obj.modified.user.username}} {% else %} {{obj.created.timestamp|default_if_none:""|naturalday}}
{{obj.created.user.username}} {% endif %}
{% trans 'Shared with' %} {% for user in obj.users.all %} {% include 'user/includes/contact_modal_button.html' %} {% endfor %}
{% include 'map/geom_form.html' %}

{% include 'ema/detail/includes/states-before.html' %}
{% include 'ema/detail/includes/states-after.html' %}
{% include 'ema/detail/includes/actions.html' %}
{% include 'ema/detail/includes/deadlines.html' %}
{% include 'ema/detail/includes/documents.html' %}
{% with 'btn-modal' as btn_class %} {% include 'modal/modal_form_script.html' %} {% endwith %} {% endblock %}