55 lines
3.1 KiB
HTML
55 lines
3.1 KiB
HTML
{% load i18n fontawesome_5 ksp_filters %}
|
|
|
|
<h3>{% trans 'Amount' %}</h3>
|
|
<strong>
|
|
{% blocktrans %}
|
|
Checked = Has been checked by the registration office according to LKompVzVo
|
|
{% endblocktrans %}
|
|
<br>
|
|
{% blocktrans %}
|
|
Recorded = Has been checked and published by the conservation office
|
|
{% endblocktrans %}
|
|
</strong>
|
|
<div class="table-container">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">{% trans 'Area of responsibility' %}</th>
|
|
<th scope="col">{% fa5_icon 'star' %} {% trans 'Checked' %}</th>
|
|
<th scope="col">{% fa5_icon 'bookmark' %} {% trans 'Recorded' %}</th>
|
|
<th scope="col">{% trans 'Number single areas' %}</th>
|
|
<th scope="col">{% trans 'Total' %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{% trans 'Conservation office by law' %}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_unb_checked_count|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_unb_recorded_count|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.num_single_surfaces_total_unb|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_unb_count|default_if_zero:"-"}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans 'Land-use planning' %}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_tbp_checked_count|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_tbp_recorded_count|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.num_single_surfaces_total_tbp|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_tbp_count|default_if_zero:"-"}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{% trans 'Other registration office' %}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_other_checked_count|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_other_recorded_count|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.num_single_surfaces_total_other|default_if_zero:"-"}}</td>
|
|
<td>{{report.compensation_report.queryset_registration_office_other_count|default_if_zero:"-"}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>{% trans 'Total' %}</strong></td>
|
|
<td><strong>{{report.compensation_report.queryset_checked_count|default_if_zero:"-"}}</strong></td>
|
|
<td><strong>{{report.compensation_report.queryset_recorded_count|default_if_zero:"-"}}</strong></td>
|
|
<td><strong>{{report.compensation_report.num_single_surfaces_total|default_if_zero:"-"}}</strong></td>
|
|
<td><strong>{{report.compensation_report.queryset_count|default_if_zero:"-"}}</strong></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |