{% extends "base.html" %} {% load custom_tags %} {% 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 %}
    {% for r in b.recipes %}
  • {% recipe_last r.recipe request.user as last_cooked %} {{ r.recipe.name }} {% recipe_rating r.recipe request.user as rating %} {{ rating|safe }} {% if last_cooked %}   {% trans 'Last cooked' %} {{ last_cooked|date }} {% endif %}
  • {% endfor %}
{% else %}

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

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