{% for entry in entries %}
{{ entry.date|date:"j M" }}
{{ entry.recipe_name }} {% if entry.rating %} {% for i in "12345" %}{% if forloop.counter <= entry.rating %}★{% else %}{% endif %}{% endfor %} {% endif %}
{% if entry.slot_choices %}
{% for slot, choice in entry.slot_choices.items %} {{ choice }} {% endfor %}
{% endif %} {% if entry.notes %}
{{ entry.notes }}
{% endif %}
{{ entry.servings }} serving{{ entry.servings|pluralize }}
{% empty %}
📝

No cooks logged yet.

{% endfor %}