{% extends 'base.html' %} {% block title %}Panel Admina{% endblock %} {% block content %}

Panel Admina

Zarządzaj zbiórkami i monitoruj finanse

{{ active_zbiorki|length }}

Aktywnych zbiórek

{{ completed_zbiorki|length }}

Zrealizowanych

{{ active_zbiorki|length + completed_zbiorki|length }}

Łącznie zbiórek
{% if active_zbiorki and active_zbiorki|length > 0 %}
{% for z in active_zbiorki %} {% endfor %}
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 %}
Edytuj
{% else %}
Brak aktywnych zbiórek

Wygląda na to, że teraz nic nie zbieramy.

Utwórz nową zbiórkę
{% endif %}
{% if completed_zbiorki and completed_zbiorki|length > 0 %}
{% for z in completed_zbiorki %} {% endfor %}
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 %}
Edytuj
{% else %}
Brak zbiórek zrealizowanych

Gdy jakaś zbiórka osiągnie 100%, pojawi się tutaj.

Utwórz nową zbiórkę
{% endif %}
{% endblock %}