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

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

{% include 'compensation/detail/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 'Last modified' %} {{obj.created.timestamp|default_if_none:""|naturalday}}
{{obj.created.user.username}}
{% trans 'Shared with' %} {% for user in obj.users.all %} {% include 'user/includes/contact_modal_button.html' %} {% endfor %}
{% if geom_form.area == 0 %}
{% trans 'No geometry added, yet.' %}
{% endif %} {{geom_form.media}} {{geom_form.geom}}

{% include 'compensation/detail/includes/states-before.html' %}
{% include 'compensation/detail/includes/states-after.html' %}
{% include 'compensation/detail/includes/actions.html' %}
{% include 'compensation/detail/includes/deadlines.html' %}
{% include 'compensation/detail/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 %}