{% extends 'base.html' %} {% block title %}Panel Admina{% endblock %} {% block content %}
Zarządzaj zbiórkami i monitoruj finanse
| ID | Nazwa | Widoczność | Opcje |
|---|---|---|---|
| {{ z.id }} |
{{ z.nazwa }}
{% if z.cel is defined or z.stan is defined %}
{% if z.cel is defined and z.cel > 0 %}
Cel: {{ z.cel|round(2) }} PLN
{% endif %}
{% if z.stan is defined %}
· Stan: {{ z.stan|round(2) }} PLN
{% endif %}
{% if z.cel is defined and z.cel > 0 and z.stan is defined %}
· {{ ((z.stan / z.cel) * 100)|round(1) }}%
{% endif %}
{% endif %}
|
{% if z.ukryta %} Ukryta {% else %} Widoczna {% endif %} |
| ID | Nazwa | Status | Opcje |
|---|---|---|---|
| {{ z.id }} |
{{ z.nazwa }}
{% if z.cel is defined or z.stan is defined %}
{% if z.cel is defined %} Cel: {{ z.cel|round(2) }} PLN {% endif %}
{% if z.stan is defined %} · Zebrano: {{ z.stan|round(2) }} PLN {% endif %}
{% endif %}
|
Zrealizowana
{% if z.ukryta %}
Ukryta
{% else %}
Widoczna
{% endif %}
|