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

{% if is_authenticated %} No cups added yet. Click the Add button to add your first cup. {% else %} No cups added yet. {% endif %}

{% else %}
{% call table::search_header(navigator, "#cup-list") %}
{% call table::sortable_header("Added", "created-at", navigator, "#cup-list") %} {% call table::sortable_header("Coffee", "roast", navigator, "#cup-list") %} {% call table::sortable_header("Cafe", "cafe", navigator, "#cup-list") %} {% for cup in cups.items %} {% endfor %}
Actions
{{ cup.created_at }}
{{ cup.roast_name }}
{{ cup.roaster_name }} {{ cup.cafe_name }} {% if is_authenticated %}
{% call icons::ellipsis_vertical("h-5 w-5") %}
{% endif %}
{% if cups.items.is_empty() %}
No cups match your search.
{% endif %} {% call table::pagination_header(cups, navigator, "#cup-list") %} {% if cups.has_next() %} {% endif %}
{% endif %}