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

No cups recorded yet. Use the form above to add your first cup.

{% 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") %} {% call table::sortable_header("Rating", "rating", navigator, "#cup-list") %} {% for cup in cups.items %} {% endfor %}
Actions
{{ cup.created_at }} {{ cup.roast_name }} {{ cup.roaster_name }} {{ cup.cafe_name }} {{ cup.rating }} {% if is_authenticated %}
{% 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 %}