{% 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.recipes %} {% else %} {% trans 'There are no recipes in this book yet.' %} {% endif %}

{% endfor %} {% include 'include/recipe_open_modal.html' %} {% endblock %}