{% load i18n %} {% load markdown %} {% load interaction %}
{% for list in lists %}

{{ list.name }} {% include 'snippets/privacy-icons.html' with item=list %}

{% if request.user.is_authenticated and request.user|saved:list %}
{% trans "Saved" as text %} {{ text }}
{% endif %}
{% with list_books=list.listitem_set.all|slice:5 %} {% if list_books %} {% endif %} {% endwith %}
{% if list.description %} {{ list.description|to_markdown|safe|truncatechars_html:30 }} {% else %}   {% endif %}

{% include 'lists/created_text.html' with list=list %}

{% endfor %}