{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Recipe Books' %}{% endblock %} {% block content %}

{% trans 'Recipe Books' %}

{% trans 'New Book' %}


{% for b in book_list %}
{% if b.book.icon %}{{ b.book.icon }} {% endif %}{{ b.book.name }}
{% if b.book.description %}

{{ b.book.description }}

{% endif %} {% trans 'Edit' %} {% trans 'Delete' %}
{% if b.recipes %} {% else %}

{% trans 'There are no recipes in this book yet.' %}

{% endif %}
{% endfor %} {% endblock %}