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

{{ collection.name }}

{% if collection.description %}

{{ collection.description }}

{% endif %}

{% if not items %}
📭

This collection is empty.

{% else %}
{% for recipe, item in items %}
{{ loop.index }}
{{ recipe.title }} {% if recipe.cuisine %}{{ recipe.cuisine }}{% endif %}
Added {{ item.added_at.strftime('%b %d, %Y') if item.added_at else '—' }}
{% endfor %}
{% endif %}
{% endblock %}