forked from NoLog.cz/TrhlinaBar
34 lines
No EOL
801 B
HTML
34 lines
No EOL
801 B
HTML
{% 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 %} |