Adding columns on Criminal to track sentences progression
This commit is contained in:
@@ -78,15 +78,21 @@
|
||||
{% endif %}
|
||||
{% if i.amountMoney is defined %}
|
||||
<br /><small>{% trans %}title_amount{% endtrans %}:</small>
|
||||
<small>{{ i.amountMoney ? i.amountMoney ~ ' ' ~'currency_symbol'|trans :'value_no_value'|trans }}</small>
|
||||
<small>{{ i.amountMoney ? i.amountMoney ~ ' ' ~'currency_symbol'|trans : 'value_no_value'|trans }}
|
||||
{{ i.amountMoney == i.amountMoneySettled ? '✅' : '❌'}}
|
||||
</small>
|
||||
{% endif %}
|
||||
{% if i.amountTime is defined %}
|
||||
<br /><small>{% trans %}title_hours{% endtrans %}:</small>
|
||||
<small>{{ i.amountTime ? i.amountTime ~ ' h' :'value_no_value'|trans}}</small>
|
||||
<small>{{ i.amountTime ? i.amountTime ~ 'h' : 'value_no_value'|trans}}
|
||||
{{ i.amountTime == i.amountTimeSettled ? '✅' : '❌'}}
|
||||
</small>
|
||||
{% endif %}
|
||||
{% if i.amountCommunityWork is defined %}
|
||||
<br /><small>{% trans %}title_community_work{% endtrans %}:</small>
|
||||
<small>{{ i.amountCommunityWork ? i.amountCommunityWork ~ ' h' :'value_no_value'|trans}}</small>
|
||||
<small>{{ i.amountCommunityWork ? i.amountCommunityWork ~ 'h' : 'value_no_value'|trans}}
|
||||
{{ i.amountCommunityWork == i.amountCommunityWorkSettled ? '✅' : '❌'}}
|
||||
</small>
|
||||
{% endif %}
|
||||
{% if i.accessorySentence is defined and i.accessorySentence is not null %}
|
||||
<br /><small data-bs-toggle="tooltip" data-placement="top" title="{{ i.accessorySentence|striptags }}">{% trans %}title_accessorySentence{% endtrans %} : {{ 'value_yes'|trans}}</small>
|
||||
|
||||
Reference in New Issue
Block a user