yamatemat/templates/checkout.html

14 lines
201 B
HTML
Raw Normal View History

2015-01-02 23:49:55 +01:00
{% extends "base.html" %}
{% block content %}
<h1>{{ heading }}</h1>
2015-01-03 00:24:57 +01:00
{% for drink in drinks %}
2015-01-02 23:49:55 +01:00
<h2>
2015-01-03 00:24:57 +01:00
<a href="/drink/{{ drink.code }}">
{{ drink.name }}
2015-01-02 23:49:55 +01:00
</a>
</h2>
{% endfor %}
{% endblock %}