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

No cafes recorded yet. Use the form above to add your first cafe.

{% else %}
{% call table::search_header(navigator, "#cafe-list") %}
{% call table::sortable_header("Added", "created-at", navigator, "#cafe-list") %} {% call table::sortable_header("Name", "name", navigator, "#cafe-list") %} {% call table::sortable_header("Location", "country", navigator, "#cafe-list") %} {% for cafe in cafes.items %} {% endfor %}
Actions
{{ cafe.created_at }} {{ cafe.name }} {{ cafe.country }} {{ cafe.city }}
{% call icons::ellipsis_vertical("h-5 w-5") %}
{% call icons::location("h-4 w-4") %} View on map {% if cafe.has_website %} {% call icons::external_link("h-4 w-4") %} Visit website {% endif %} {% if is_authenticated %} {% endif %}
{% if cafes.items.is_empty() %}
No cafes match your search.
{% endif %} {% call table::pagination_header(cafes, navigator, "#cafe-list") %} {% if cafes.has_next() %} {% endif %}
{% endif %}