{% 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}}
{% trans 'Funded by' %} {% with obj.fundings.all as fundings %} {% for funding in fundings %}
{{funding.short_name}}

{% empty %} {% trans 'None' %} {% endfor %} {% endwith %}
{% 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' %}

{% trans 'Open in browser' %}

{{ qrcode|safe }}

{% trans 'View in LANIS' %}

{{ qrcode_lanis|safe }}
{% endblock %}