{% 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::pagination_header(roasts, 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("Roaster", "roaster", navigator, "#roast-list") %} {% call table::sortable_header("Origin", "origin", navigator, "#roast-list") %} {% call table::sortable_header("Producer", "producer", navigator, "#roast-list") %} {% if is_authenticated %} {% endif %} {% for roast in roasts.items %} {% if is_authenticated %} {% endif %} {% endfor %}
NotesActions
{{ roast.created_at }} {{ roast.roaster_label }} {{ roast.origin }} {{ roast.producer }} {% if roast.tasting_notes.is_empty() %} No tasting notes yet. {% else %}
    {% for note in roast.tasting_notes %}
  • {{ note }}
  • {% endfor %}
{% endif %}
{% endif %}