{% extends 'base.html' %} {% block title %}Panel administratora{% endblock %} {% block content %}
Wgląd w użytkowników, listy, paragony, wydatki i ustawienia aplikacji.
| 👤 Użytkownicy | {{ user_count }} |
| 📝 Listy zakupowe | {{ list_count }} |
| 🛒 Produkty na listach | {{ item_count }} |
| ✅ Zakupione | {{ purchased_items_count }} |
| 🚫 Nieoznaczone jako kupione | {{ not_purchased_count }} |
| ✍️ Produkty z notatkami | {{ items_with_notes }} |
| 🕓 Śr. czas do zakupu (h) | {{ avg_hours_to_purchase }} |
| 💸 Średnia kwota na listę | {{ format_currency(avg_list_expense) }} |
Brak danych
| Typ listy | Miesiąc | Rok | Całkowite |
|---|---|---|---|
| Wszystkie | {{ format_currency(expense_summary.all.month) }} | {{ format_currency(expense_summary.all.year) }} | {{ format_currency(expense_summary.all.total) }} |
| Aktywne | {{ format_currency(expense_summary.active.month) }} | {{ format_currency(expense_summary.active.year) }} | {{ format_currency(expense_summary.active.total) }} |
| Archiwalne | {{ format_currency(expense_summary.archived.month) }} | {{ format_currency(expense_summary.archived.year) }} | {{ format_currency(expense_summary.archived.total) }} |
| Wygasłe | {{ format_currency(expense_summary.expired.month) }} | {{ format_currency(expense_summary.expired.year) }} | {{ format_currency(expense_summary.expired.total) }} |