Recept {{ recept.naam }}
{% for foto in recept.fotos.all %}
{% endfor %}
Informatie
- Door: {{ recept.user.username }}
- Bereidingstijd: {{ recept.bereidingstijd }} min.
- {{ recept.doel.all|join:", " }}
{% if recept.seizoen %}- Seizoen: {{ recept.seizoen }}
{% endif %}
{% if recept.vegetarisch %}- Vegetarisch
{% endif %}
Bereiding
{{ recept.bereiding|safe }}
Nota's
{% if notas|length > 0 %}
{% for nota in notas %}
{{ nota|safe }}
{% endfor %}
{% endif %}
{% if user.pk == recept.user.pk %}
{% endblock %}