Numer konta
{{ zbiorka.numer_konta }}
Telefon BLIK
{{ zbiorka.numer_telefonu_blik }}
{% if not zbiorka.ukryj_kwote %}
{% if has_cel %}
Cel: {{ zbiorka.cel|round(2) }} PLN
{% endif %}
Stan: {{ zbiorka.stan|round(2) }} PLN
{% if has_cel %}
{% set brak = (zbiorka.cel - zbiorka.stan) %}
{% if brak > 0 %}
Do celu brakuje: {{ brak|round(2) }} PLN
{% elif brak == 0 %}
Cel osiągnięty.
{% else %}
Przekroczono cel o: {{ (brak * -1)|round(2) }} PLN
{% endif %}
{% endif %}
{% endif %}
{% if current_user.is_authenticated and current_user.is_admin %}
{% endif %}