2020-08-01 19:00:11 +02:00
|
|
|
{% extends 'global.html'%}
|
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
# {% block title %}Voucher-Überprüfung{% endblock %}
|
|
|
|
|
|
|
|
{% block maincontent %}
|
|
|
|
|
|
|
|
<h2>Voucher-Überprüfung</h2>
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
2020-08-01 19:21:59 +02:00
|
|
|
{{ voucher_form.as_p }}
|
|
|
|
<button type="submit">Überprüfen</button>
|
2020-08-01 19:00:11 +02:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock maincontent %}
|