{% if roasts.items.is_empty() %}

No roasts recorded yet. Use the form above to add your first roast.

{% else %}

Showing {{ roasts.start_index() }}–{{ roasts.end_index() }} of {{ roasts.total }} roasts

{% if roasts.is_showing_all() %} Showing all results {% else %} Page {{ roasts.page }} of {{ roasts.total_pages() }} {% endif %}
{% set created_sorted = navigator.is_sorted_by("created-at") %} {% set name_sorted = navigator.is_sorted_by("name") %} {% set roaster_sorted = navigator.is_sorted_by("roaster") %} {% set origin_sorted = navigator.is_sorted_by("origin") %} {% set producer_sorted = navigator.is_sorted_by("producer") %} {% if is_authenticated %} {% endif %} {% for roast in roasts.items %} {% if is_authenticated %} {% endif %} {% endfor %}
NotesActions
{{ roast.created_at }} {{ roast.roaster_label }} {{ roast.origin }} {{ roast.producer }} {% if roast.tasting_notes.is_empty() %} No tasting notes yet. {% else %}
    {% for note in roast.tasting_notes %}
  • {{ note }}
  • {% endfor %}
{% endif %}
{% endif %}