* extends the API to support serializing and deserializing of action_details and biotope_details * renames biotope_extra_types into biotope_type_details on CompensationState model for convenience reasons and to match CompensationAction's action_type_details
74 lines
2.9 KiB
HTML
74 lines
2.9 KiB
HTML
{% load i18n l10n fontawesome_5 %}
|
|
<div id="states-before" class="card">
|
|
<div class="card-header rlp-r">
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<h5>
|
|
<span class="badge badge-light">{{before_states.count}}</span>
|
|
{% trans 'States before' %}
|
|
</h5>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="d-flex justify-content-end">
|
|
{% if is_default_member and has_access %}
|
|
<button class="btn btn-outline-default btn-modal" data-form-url="{% url 'compensation:acc-new-state' obj.id %}?before=true" title="{% trans 'Add new state before' %}">
|
|
{% fa5_icon 'plus' %}
|
|
{% fa5_icon 'layer-group' %}
|
|
</button>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body scroll-300">
|
|
{% if sum_before_states < sum_after_states %}
|
|
<div class="row alert alert-danger">
|
|
{% trans 'Missing surfaces according to states after: ' %}{{ diff_states|floatformat:2 }} m²
|
|
</div>
|
|
{% endif %}
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th class="w-25" scope="col">
|
|
{% trans 'Biotope type' %}
|
|
</th>
|
|
<th class="w-25" scope="col">
|
|
{% trans 'Biotope additional type' %}
|
|
</th>
|
|
<th scope="col">
|
|
{% trans 'Surface' %}
|
|
</th>
|
|
{% if is_default_member and has_access %}
|
|
<th scope="col">
|
|
{% trans 'Action' %}
|
|
</th>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for state in before_states %}
|
|
<tr>
|
|
<td class="align-middle">
|
|
{{ state.biotope_type }}
|
|
</td>
|
|
<td class="align-middle">
|
|
{% for biotope_extra in state.biotope_type_details.all %}
|
|
<div class="mb-2" title="{{ biotope_extra }}">
|
|
{{ biotope_extra.long_name }}
|
|
</div>
|
|
{% endfor %}
|
|
</td>
|
|
<td class="align-middle">{{ state.surface|floatformat:2 }} m²</td>
|
|
<td class="align-middle">
|
|
{% if is_default_member and has_access %}
|
|
<button data-form-url="{% url 'compensation:acc-state-remove' obj.id state.id %}" class="btn btn-default btn-modal" title="{% trans 'Remove state' %}">
|
|
{% fa5_icon 'trash' %}
|
|
</button>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div> |