yamatemat/templates/checkout.html

12 lines
247 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ heading }}</h1>
<h2>
<a href="/mate/user/{{ drinker.code }}">{{ drinker.name }}</a>
spends {{total}} units on
<a href="/mate/drink/{{ drink.code }}">{{ drink.name }}</a>.
</h2>
{% endblock %}