{% extends 'layout.html' %} {% load fr_display %} {% block content %}

Suggested books

{% if not suggested_books %}

There are no books here right now! Try searching for a book to get started

{% else %}
{% for book in suggested_books %}
{% endfor %} {% endif %}
{% if not activities %}

There aren't any activities right now! Try following a user to get started

{% endif %} {% for activity in activities %}
{% include 'snippets/status.html' with status=activity %}
{% endfor %}
{% endblock %}