{% 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") %} {% if is_authenticated %} {% endif %} {% for cup in cups.items %} {% if is_authenticated %} {% endif %} {% if is_authenticated %} {% endif %} {% endfor %}
Actions
{{ cup.created_date }}
{{ cup.roast_name }}
{{ cup.roaster_name }} {{ cup.cafe_name }}
{% 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 %}