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

{% if is_authenticated %} No roasters added yet. Click Add to create the first roaster. {% else %} No roasters added yet. {% endif %}

{% else %}
{{ table::search_header(navigator, "#roaster-list") }}
{{ table::sortable_header("Added", "created-at", navigator, "#roaster-list") }} {{ table::sortable_header("Name", "name", navigator, "#roaster-list") }} {{ table::sortable_header("Country", "country", navigator, "#roaster-list") }} {{ table::sortable_header("City", "city", navigator, "#roaster-list") }} {% for roaster in roasters.items %} {% if !roaster.city.is_empty() %} {% endif %} {% if roaster.has_homepage || is_authenticated %} {% endif %} {% if roaster.has_homepage || is_authenticated %} {% endif %} {% endfor %}
Actions
{{ roaster.created_date }}
{{ roaster.name }} {{ roaster.country }}{{ roaster.city }}{{ roaster.country }} {{ roaster.city }} {% if roaster.has_homepage || is_authenticated %} {% endif %}
{% if roasters.items.is_empty() %}
No roasters match the search.
{% endif %} {{ table::pagination_header(roasters, navigator, "#roaster-list") }} {% if roasters.has_next() %} {% endif %}
{% endif %}