{% extends "base.html" %} {% block title %}Cocktail Menu{% endblock %} {% block content %} {% for bev in bevs %} {% for name, details in bev.items() %}

{{ name }}

Directions!

{{ details['directions'] }} {% endfor %} {% endfor %} {% endblock %}