{% extends "base.html" %} {% block app_content %}

{{ cocktail.name.title() }}


Ingredients

Preparation

    {% for step in cocktail.preparation %}
  1. {{ step }}
  2. {% endfor %}

{% if ask_eval == 'True' %}

What did you think of the recommendation?

{{ form.hidden_tag() }} {{ form.options }} {{ form.submit() }}
{% endif %}
{% if error %} {% endif %}
{% endblock %}