|
{{ i.directory.firstname }} {{ i.directory.lastname }} {% if i.directory.dead %}, {% trans %}title_dead{% endtrans %}{% endif %}
|
{% trans %}title_missing{% endtrans %}:
{% if type == 'fine' %}
{{ i.amountMoney - i.amountMoneySettled }} {{'currency_symbol'|trans}}
{% elseif type == 'jail' %}
{{ i.amountTime - i.amountTimeSettled }} {{'title_hours'|trans}}
{% elseif type == 'community_work' %}
{{ i.amountCommunityWork - i.amountCommunityWorkSettled }} {{'title_hours'|trans}}
{% endif %}
{{ form_start(i.form) }}
{{ form_label(i.form.amount) }}
{{ form_widget(i.form.amount) }}
{{ form_widget(i.form.submit, { 'label': 'button_ok' }) }}
{{ form_end(i.form) }}
|
{{i.createdAt |date('_datetime.format'|trans)}}
|
{% include '_cells/documentActions.html.twig' with {'document': i, 'noedit': true, 'nodelete': true, 'noarchive': true} %}
|