{% import "partials/table.html" as table %}
{% if roasts.items.is_empty() %}

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 table::pagination_header(roasts, navigator, "#roast-list") %} {% if roasts.has_next() %} {% endif %}
{% endif %}