{% extends 'base.html' %} {% load i18n l10n static fontawesome_5 humanize %} {% block head %} {% comment %} dal documentation (django-autocomplete-light) states using form.media for adding needed scripts. This does not work properly with modal forms, as the scripts are not loaded properly inside the modal. Therefore the script linkages from form.media have been extracted and put inside dal/scripts.html to ensure these scripts are loaded when needed. {% endcomment %} {% include 'dal/scripts.html' %} {% endblock %} {% block body %}

{% trans 'Eco-account' %}
{{obj.identifier}}

{% include 'compensation/detail/eco_account/includes/controls.html' %}

{% trans 'Title' %} {{obj.title}}
{% trans 'Available' %} {% with available as value %} {% include 'konova/custom_widgets/progressbar.html' %} {% endwith %}
{% 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' %} {{obj.modified.timestamp|default_if_none:""|naturalday}}
{{obj.modified.user.username}}
{% trans 'Shared with' %} {% for user in obj.users.all %} {% include 'user/includes/contact_modal_button.html' %} {% endfor %}
{% include 'map/geom_form.html' %}

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