{% 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 'Intervention handler' %} | +{{obj.responsible.handler|default_if_none:""}} | +
{% trans 'Compensations' %} | +
+ {% for comp in obj.compensations.all %}
+
+ {{comp.identifier}}
+
+ + {% empty %} + {% trans 'None' %} + {% endfor %} + |
+
{% trans 'Deductions of eco-accounts' %} | +
+ {% for deduction in deductions %}
+
+ {{deduction.account.identifier}}
+
+ + {% 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}} + | +
+ {% blocktrans %} + The data you want to see is not recorded and might still be work in progress. Please come back another time. + {% endblocktrans %} +
+