{% extends "base.html" %} {% block content %}
{% for recept in recepten %}

{{ recept.naam }}

{% if recept.photoAvailable %} {% with recept.getAnyPhoto as foto %} {% endwith %} {% endif %}
{{ recept.user.username }}
{{ recept.bereidingstijd }} minuten
{{ recept.aantal_personen }} perso{{ recept.aantal_personen|pluralize:"on,nen" }}
{% endfor %}
{% endblock %}