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

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("Country", "country", navigator, "#roaster-list") %} {% call table::sortable_header("City", "city", navigator, "#roaster-list") %} {% if is_authenticated %} {% endif %} {% for roaster in roasters.items %} {% if is_authenticated %} {% endif %} {% endfor %}
Homepage NotesActions
{{ roaster.created_at }} {{ roaster.name }} {{ roaster.country }} {{ roaster.city }} {% if roaster.has_homepage %} {% else %} {% endif %} {{ roaster.notes }}
{% call table::pagination_header(roasters, navigator, "#roaster-list") %} {% if roasters.has_next() %} {% endif %}
{% endif %}