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

{% trans 'Report' %}

{{obj.identifier}}

{% trans 'Title' %} {{obj.title|default_if_none:""}}
{% trans 'Process type' %} {{obj.legal.process_type|default_if_none:""}}
{% trans 'Law' %} {% for law in obj.legal.laws.all %}
{{law.short_name}} - {{law.long_name}}

{% endfor %}
{% trans 'Registration office' %} {{obj.responsible.registration_office.str_as_office|default_if_none:""}}
{% trans 'Registration office file number' %} {{obj.responsible.registration_file_number|default_if_none:""}}
{% trans 'Conservation office' %} {{obj.responsible.conservation_office.str_as_office|default_if_none:""}}
{% trans 'Conservation office file number' %} {{obj.responsible.conservation_file_number|default_if_none:""}}
{% trans 'Compensations' %} {% for comp in obj.compensations.all %} {{comp.identifier}} - {{comp.title}}
{% empty %} {% trans 'None' %} {% endfor %}
{% trans 'Deductions of eco-accounts' %} {% for deduction in deductions %} {{deduction.account.identifier}} - {{deduction.account.title}}
{% endfor %}
{% trans 'Payments' %} {% if obj.payments.all %} {% trans 'Exist' %} {% else %} {% trans 'None' %} {% endif %}
{% trans 'Registration date' %} {{obj.legal.registration_date|default_if_none:""}}
{% trans 'Binding on' %} {{obj.legal.binding_date|default_if_none:""}}
{% trans 'Last modified' %} {{obj.created.timestamp|default_if_none:""|naturalday}}
{% include 'map/geom_form.html' %}
{% include 'konova/includes/parcels/parcels.html' %}
{% include 'konova/includes/report/qrcodes.html' %}
{% endblock %}