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

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

{% else %}
{{ table::search_header(navigator, "#cafe-list") }}
{{ table::sortable_header("Added", "created-at", navigator, "#cafe-list") }} {{ table::sortable_header("Name", "name", navigator, "#cafe-list") }} {{ table::sortable_header("City", "city", navigator, "#cafe-list") }} {{ table::sortable_header("Country", "country", navigator, "#cafe-list") }} {% for cafe in cafes.items %} {% endfor %}
Actions
{{ cafe.created_date }}
{{ cafe.name }} {{ cafe.country }} {{ cafe.city }} {{ cafe.city }} {{ cafe.country }}
{% if cafes.items.is_empty() %}
No cafes match your search.
{% endif %} {{ table::pagination_header(cafes, navigator, "#cafe-list") }} {% if cafes.has_next() %} {% endif %}
{% endif %}