{% import "partials/table.html" as table %}
{% 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 %}
Notes Actions
{{ cafe.created_at }} {{ cafe.name }} {{ cafe.country }} {{ cafe.city }} {{ cafe.notes }}
Open {{ cafe.name }} in Google Maps {% if cafe.has_website %} {% else %} {% 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 %}