FIX [budget] display budget element comment if it is of kind 'autre'

This commit is contained in:
Julie Lenaerts 2023-05-03 12:11:00 +02:00
parent 2554da9dd8
commit a0ae1f0d0f

View File

@ -16,8 +16,14 @@
<td class="el-type">
{% if f.isResource %}
{{ f.resource.name|localize_translatable_string }}
{% if f.resource.getKind is same as 'other' %}
: {{ f.getComment }}
{% endif %}
{% else %}
{{ f.charge.name|localize_translatable_string }}
{% if f.charge.getKind is same as 'other' %}
: {{ f.getComment }}
{% endif %}
{% endif %}
</td>
<td>{{ f.amount|format_currency('EUR') }}</td>