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

No roasters recorded yet. Use the form above to add your first roaster.

{% else %}
{% call table::search_header(navigator, "#roaster-list") %}
{% call table::sortable_header("Added", "created-at", navigator, "#roaster-list") %} {% call table::sortable_header("Name", "name", navigator, "#roaster-list") %} {% call table::sortable_header("Location", "country", navigator, "#roaster-list") %} {% for roaster in roasters.items %} {% if !roaster.city.is_empty() %} {% endif %} {% endfor %}
Notes Actions
{{ roaster.created_at }} {{ roaster.name }} {{ roaster.country }} {% if !roaster.city.is_empty() %} {% endif %} {{ roaster.city }}{{ roaster.notes }}
{% if roaster.has_homepage %} {% endif %} {% if is_authenticated %} {% endif %}
{% if roasters.items.is_empty() %}
No roasters match your search.
{% endif %} {% call table::pagination_header(roasters, navigator, "#roaster-list") %} {% if roasters.has_next() %} {% endif %}
{% endif %}