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

Panel Admina

{% if active_zbiorki and active_zbiorki|length > 0 %}
{% for z in active_zbiorki %} {% endfor %}
ID Nazwa Widoczność Opcje
{{ z.id }}
{{ z.nazwa }} {# opcjonalnie: mini-meta z celem/stanem jeśli masz te pola #} {% 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 %} · Stan: {{ z.stan|round(2) }} PLN {% 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 %}