{% 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 the Add button to create your first roaster. {% else %} No roasters added yet. {% endif %}

{% 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 %} {% if roaster.has_homepage || is_authenticated %} {% endif %} {% if roaster.has_homepage || is_authenticated %} {% endif %} {% endfor %}
Actions
{{ roaster.created_date }}
{{ roaster.name }} {{ roaster.country }} {% if !roaster.city.is_empty() %} {% endif %} {{ roaster.city }} {% if roaster.has_homepage || 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 %}