{% 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.created_by != request.user %} {% trans 'by' %} {{ b.book.created_by.get_user_name }} {% endif %}
{% if b.book.description %}

{{ b.book.description }}

{% endif %} {% if b.book.created_by == request.user or request.user.is_superuser %} {% trans 'Edit' %} {% trans 'Delete' %} {% endif %}
{% 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 %}
    {% if b.book.created_by == request.user or request.user.is_superuser %}
    {% endif %}
  • {% endfor %}
{% else %}

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

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