{% extends "base.html" %} {% block title %}Brewlog ยท Brews{% endblock %} {% block content %}

Brews

Log your coffee brews.

{% if is_authenticated && !bag_options.is_empty() && !grinder_options.is_empty() && !brewer_options.is_empty() %} {% endif %}
{% if is_authenticated %} {% if bag_options.is_empty() %}

Open a bag first

Brews need an open bag of coffee. Add a bag to enable this form.

{% else if grinder_options.is_empty() || brewer_options.is_empty() %}

Add your gear first

Brews need a grinder and brewer. Add your gear to enable this form.

{% else %} {% endif %} {% endif %}
{% include "partials/brew_list.html" %}
{% endblock %}