{% 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 Add to add the 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("Country", "country", navigator, "#cafe-list") }} {{ table::sortable_header("City", "city", navigator, "#cafe-list") }} {% for cafe in cafes.items %} {% endfor %}
{{ cafe.created_date }}
{{ cafe.name }} {% if !cafe.country_flag.is_empty() %}{{ cafe.country_flag }}{% endif %}{{ cafe.country }} {{ cafe.city }} {% if !cafe.country_flag.is_empty() %}{{ cafe.country_flag }}{% endif %}{{ cafe.country }} {{ cafe.city }} {{ icons::chevron_right("h-5 w-5") }}
{% if cafes.items.is_empty() %}
No cafes match the search.
{% endif %} {{ table::pagination_header(cafes, navigator, "#cafe-list") }} {% if cafes.has_next() %} {% endif %}
{% endif %}