{% extends 'public_base.html' %} {% load i18n fontawesome_5 humanize %} {% block body %}

{% trans 'Report' %}

{{obj.identifier}}

{% trans 'Title' %} {{obj.title|default_if_none:""}}
{% trans 'compensates intervention' %} {{obj.intervention.identifier}} - {{obj.intervention.title}}
{% trans 'Is PIK' %} {% if obj.is_pik %} {% trans 'Yes' %} {% else %} {% trans 'No' %} {% endif %}
{% trans 'Is CEF' %} {% if obj.is_cef %} {% trans 'Yes' %} {% else %} {% trans 'No' %} {% endif %}
{% trans 'Is coherence keeping' %} {% if obj.is_coherence_keeping %} {% trans 'Yes' %} {% else %} {% trans 'No' %} {% endif %}
{% trans 'Last modified' %} {{obj.modified.timestamp|default_if_none:""|naturalday}}
{% include 'compensation/detail/compensation/includes/states-before.html' %} {% include 'compensation/detail/compensation/includes/states-after.html' %} {% include 'compensation/detail/compensation/includes/actions.html' %}
{% include 'map/geom_form.html' %}
{% include 'konova/includes/parcels/parcels.html' %}
{% include 'konova/includes/report/qrcodes.html' %}
{% endblock %}