{% extends 'base.html' %} {% block title %}Twoje listy zakupów{% endblock %} {% block content %} {% if not current_user.is_authenticated %} {% endif %} {% if current_user.is_authenticated %}

Stwórz nową listę

{% endif %} {% if current_user.is_authenticated %}

Twoje listy

{% if user_lists %} {% else %}

Nie masz jeszcze żadnych list. Utwórz pierwszą, korzystając z formularza powyżej!

{% endif %} {% endif %}

Publiczne listy innych użytkowników

{% if public_lists %} {% else %}

Brak dostępnych list publicznych do wyświetlenia.

{% endif %} {% endblock %}