{% 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 Add to add the first cup. {% else %} No cups added yet. {% endif %}

{% else %}
{{ table::search_header(navigator, "#cup-list") }}
{{ table::sortable_header("Added", "created-at", navigator, "#cup-list") }} {{ table::sortable_header("Roast", "roast", navigator, "#cup-list") }} {{ table::sortable_header("Roaster", "roaster", navigator, "#cup-list") }} {{ table::sortable_header("Cafe", "cafe", navigator, "#cup-list") }} {{ table::sortable_header("City", "city", 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.roast_name }} {{ cup.roaster_name }} {{ cup.cafe_name }} {{ cup.cafe_city }} {{ cup.cafe_city }}
{% if cups.items.is_empty() %}
No cups match the search.
{% endif %} {{ table::pagination_header(cups, navigator, "#cup-list") }} {% if cups.has_next() %} {% endif %}
{% endif %}