{% extends 'embed-layout.html' %} {% load i18n %} {% load book_display_tags %} {% load rating_tags %} {% load group_tags %} {% load markdown %} {% block title %}{% blocktrans with list_name=list.name owner=list.user.display_name %}{{ list_name }}, a list by {{owner}}{% endblocktrans %}{% endblock title %} {% block content %}

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

{% include 'lists/created_text.html' with list=list %} {% blocktrans with site_name=site.name %}on {{ site_name }}{% endblocktrans %}

{% include 'snippets/trimmed_text.html' with full=list.description %}
{% if not items.object_list.exists %}

{% trans "This list is currently empty" %}

{% else %}
    {% for item in items %} {% with book=item.book %}
  1. {% include 'snippets/book_titleby.html' %}

    {% include 'snippets/stars.html' with rating=item.book|rating:request.user %}

    {{ book|book_description|to_markdown|default:""|safe|truncatewords_html:20 }}
  2. {% endwith %} {% endfor %}
{% endif %} {% include "snippets/pagination.html" with page=items %}
{% endblock %}