yamatemat/templates/checkout.html

12 lines
247 B
HTML
Raw Permalink Normal View History

2015-01-02 23:49:55 +01:00
{% extends "base.html" %}
{% block content %}
<h1>{{ heading }}</h1>
<h2>
2015-01-03 05:23:00 +01:00
<a href="/mate/user/{{ drinker.code }}">{{ drinker.name }}</a>
spends {{total}} units on
<a href="/mate/drink/{{ drink.code }}">{{ drink.name }}</a>.
2015-01-02 23:49:55 +01:00
</h2>
{% endblock %}