{% extends 'get_started/layout.html' %} {% load i18n %} {% block panel %}

{% trans "What are you reading?" %}

{% if request.GET.query and not book_results %}

{% blocktrans with query=request.GET.query %}No books found for "{{ query }}"{% endblocktrans %}. {% blocktrans %}You can add books when you start using {{ site_name }}.{% endblocktrans %}

{% endif %}
{% csrf_token %}

{% trans "Suggested Books" %}

{% if book_results %}

Search results

{% for book in book_results %} {% include 'get_started/book_preview.html' %} {% endfor %}
{% endif %} {% if popular_books %}

{% blocktrans %}Popular on {{ site_name }}{% endblocktrans %}

{% for book in popular_books %} {% include 'get_started/book_preview.html' %} {% endfor %}
{% endif %} {% if not book_results and not popular_books %}

{% trans "No books found" %}

{% endif %}
{% endblock %}