TrhlinaBar/templates/checkout.html

34 lines
801 B
HTML
Raw Normal View History

2023-02-25 18:22:03 +01:00
{% extends 'base.html' %}
{% block content %}
<section>
<div class="grid">
<div><h4>{{prod.name}}</h4></div>
<div><h4>Doporučená cena: {{prod.price}},- Kč</h4></div>
</div>
</section>
<section>
<div>
V hotovosti:
<form action="/cash-payment" method="post">
<input type="text" name="barcode" value="{{prod.barcode}}" hidden>
<input type="submit" value="Prachy do kasičky" >
</form>
</div>
</section>
<section>
<div>
<form action="/account-payment" method="post">
<input type="text" name="barcode" value="{{prod.barcode}}" hidden>
<br>
Odečíst z účtu:
<input type="text" name="barid" autofocus><br>
<input type="submit" hidden>
</form>
</div>
</section>
{% endblock %}