2018-07-07 15:11:27 +02:00
{% extends "base.html" %}
{% block main %}
2024-12-07 15:50:37 +01:00
< h1 > Welcome, {{ authuser.name }}< / h1 >
{# Show the users current balance #}
< p >
Your balance: < strong > {{ authuser.balance|chf }}< / strong >
< / p >
< p id = "depositlist" >
< a class = "btn btn-primary me-2" href = "/deposit?n=100" > Deposit CHF 1< / a >
< a class = "btn btn-primary me-2" href = "/deposit?n=1000" > Deposit CHF 10< / a >
< / p >
< div id = "deposit-wrapper" >
< div id = "deposit-input" >
< div id = "deposit-output" >
< span id = "deposit-title" > < / span >
< span id = "deposit-amount" > 0.00< / span >
2021-04-07 02:41:53 +02:00
< / div >
2024-12-07 15:50:37 +01:00
{% for i in [('1', '1'), ('2', '2'), ('3', '3'), ('4', '4'), ('5', '5'), ('6', '6'), ('7', '7'), ('8', '8'), ('9', '9'), ('del', '✗'), ('0', '0'), ('ok', '✓')] %}
< div class = "numpad" id = "numpad-{{ i.0 }}" onclick = "deposit_key('{{ i.0 }}');" > {{ i.1 }}< / div >
{% endfor %}
< div id = "transfer-userlist" >
< div id = "scroll-up" onclick = "scrollUserlist(-130);" > ▲< / div >
< ul id = "transfer-userlist-list" >
{% for user in (users if user != authuser) %}
< li onclick = "set_transfer_user(this, {{ user.id }})" > {{ user.name }}< / li >
{% endfor %}
< / ul >
< div id = "scroll-down" onclick = "scrollUserlist(+130);" > ▼< / div >
2020-02-03 20:44:58 +01:00
< / div >
2024-12-07 15:50:37 +01:00
< / div >
< / div >
< script src = "/static/js/depositlist.js" > < / script >
< br / >
2018-07-23 00:19:41 +02:00
2024-12-07 15:50:37 +01:00
< div class = "row itemlist" >
{% for product in products %}
{# Show an item per product, consisting of the name, image, price and stock, triggering a purchase on click #}
< div class = "col-sm-1 g-4" >
{% if product.custom_price %}
< a class = "card h-100 text-bg-light" onclick = "setup_custom_price({{ product.id }}, '{{ product.name}}');" >
{% else %}
< a class = "card h-100 text-bg-light" { % if product . ean % } id = "a-buy-ean{{ product.ean }}" { % endif % } href = "/buy?pid={{ product.id }}" >
{% endif %}
< div class = "card-header" >
{{ product.name }}
< / div >
< div class = "card-body" >
{% if product.custom_price %}
< span class = "card-text" > Custom Price< / span >
{% else %}
< span class = "card-text" >
{% if authuser.is_member %}
{{ product.price_member|chf }}
{% else %}
{{ product.price_non_member|chf }}
{% endif %}
< / span >
{% endif %}
< / div >
< img class = "card-img-bottom" src = "/static/upload/thumbnails/products/{{ product.id }}.png?cacheBuster={{ now }}" alt = "Picture of {{ product.name }}" draggable = "false" / >
{% set pstock = stock.get_stock(product) %}
{% if pstock is not none %}
< div class = "card-img-overlay d-flex flex-column justify-content-end" >
< span class = "card-text text-bg-light" > {{ pstock }}< / span >
< / div >
{% endif %}
< / a >
< / div >
{% endfor %}
< / div >
2018-07-07 15:11:27 +02:00
2024-12-07 15:50:37 +01:00
{{ super() }}
2018-07-07 15:11:27 +02:00
2024-11-25 23:29:30 +01:00
{% endblock %}
2024-11-23 09:48:53 +01:00
2024-11-25 23:29:30 +01:00
{% block eanwebsocket %}
2024-12-07 15:50:37 +01:00
let eaninput = document.getElementById("a-buy-ean" + e.data);
if (eaninput === null) {
document.location = "?ean=" + e.data;
} else {
eaninput.click();
}
2018-07-07 15:11:27 +02:00
{% endblock %}