{% extends 'base.html' %}
{% load i18n %}
{% load catalogue_tags %}
{% block settings %}
{% load title %}
{% trans 'Półka' as title %}
{% title title %}
{% endblock %}
{% block main %}
{% for list in favs %}
{% trans "Ulubione" %}
{% for item in list.userlistitem_set.all %}
{% with book=item.book %}
{% if book %}
{% include "catalogue/book_box.html" %}
{% endif %}
{% endwith %}
{% endfor %}
{% endfor %}
{% for list in others %}
{{ list.name }}
{% for item in list.userlistitem_set.all %}
{% with book=item.book %}
{% if book %}
{% include "catalogue/book_box.html" %}
{% endif %}
{% endwith %}
{% endfor %}