{% extends 'base.html' %} {% block title %}Panel Admina{% endblock %} {% block content %}
| 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 %} | 
| 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 %}
                                 
                             |