{% extends "base.html" %} {% block content %}

Recept {{ recept.naam }}

{% for foto in recept.fotos.all %}
{% endfor %}

Informatie

Ingredienten

Aantal personen:

Bereiding

{{ recept.bereiding|safe }}

Nota's

{% if notas|length > 0 %} {% for nota in notas %}
{{ nota|safe }}
{% endfor %} {% endif %}
{% csrf_token %}

{% if user.pk == recept.user.pk %}
{% endblock %}