{% import "partials/table.html" as table %} {% import "partials/icons.html" as icons %}
{% if roasts.items.is_empty() && !navigator.has_search() %}

No roasts recorded yet. Use the form above to add your first roast.

{% else %}
{% call table::search_header(navigator, "#roast-list") %}
{% call table::sortable_header("Added", "created-at", navigator, "#roast-list") %} {% call table::sortable_header("Roast", "name", navigator, "#roast-list") %} {% call table::sortable_header("Origin", "origin", navigator, "#roast-list") %} {% if is_authenticated %} {% endif %} {% for roast in roasts.items %} {% if !roast.producer.is_empty() %} {% endif %} {% if is_authenticated %} {% endif %} {% endfor %}
Tasting NotesActions
{{ roast.created_at }} {{ roast.name }} {{ roast.roaster_label }} {{ roast.origin }} {% if !roast.producer.is_empty() %} {% endif %} {{ roast.producer }} {% if roast.tasting_notes.is_empty() %} No tasting notes yet. {% else %} {{ roast.tasting_notes.join(", ") }} {% endif %}
{% call icons::ellipsis_vertical("h-5 w-5") %}
{% if roasts.items.is_empty() %}
No roasts match your search.
{% endif %} {% call table::pagination_header(roasts, navigator, "#roast-list") %} {% if roasts.has_next() %} {% endif %}
{% endif %}