|
|
|
|
|
{{ piggy.name }}
{% if piggy.attachments.count() > 0 %}
{% endif %}
|
{{ formatAmountBySymbol(piggy.current_amount,piggy.currency_symbol,piggy.currency_decimal_places) }}
|
{% if piggy.current_amount > 0 %}
{% endif %}
|
|
{% if piggy.left_to_save > 0 %}
{% endif %}
|
{{ formatAmountBySymbol(piggy.target_amount,piggy.currency_symbol,piggy.currency_decimal_places) }}
|
{% if piggy.left_to_save > 0 %}
{{ formatAmountBySymbol(piggy.left_to_save,piggy.currency_symbol,piggy.currency_decimal_places) }}
{% endif %}
|
{% if piggy.target_date %}
{{ formatAmountBySymbol(piggy.save_per_month, piggy.currency_symbol, piggy.currency_decimal_places) }}
{% endif %}
|
{% endfor %}
| |
|
| {# handle #}
| {# buttons #}
|
{% for sum in objectGroup.sums %}
{{ formatAmountBySymbol(sum.saved, sum.currency_symbol, sum.currency_decimal_places) }}
{% endfor %}
|
| {# remove money #}
| {# progress#}
| {# add money #}
{% for sum in objectGroup.sums %}
{{ formatAmountBySymbol(sum.target, sum.currency_symbol, sum.currency_decimal_places) }}
{% endfor %}
|
{% for sum in objectGroup.sums %}
{{ formatAmountBySymbol(sum.left_to_save, sum.currency_symbol, sum.currency_decimal_places) }}
{% endfor %}
|
{% for sum in objectGroup.sums %}
{{ formatAmountBySymbol(sum.save_per_month, sum.currency_symbol, sum.currency_decimal_places) }}
{% endfor %}
|