mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
58 lines
1.7 KiB
Django/Jinja
58 lines
1.7 KiB
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{% macro barman_logout_link(user) %}
|
|
<form method="post" action="{{ url('counter:logout', counter_id=counter.id) }}" class="inline">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="user_id" value="{{ user.id }}">
|
|
<button type="submit" name="submit_param" value="submit_value" class="link-button">{{ user.get_display_name() }}</button>
|
|
</form>
|
|
{% endmacro %}
|
|
|
|
{% block content %}
|
|
<h3>Counter</h3>
|
|
<h4>{{ counter }}</h4>
|
|
<p><strong>Club: </strong> {{ counter.club }}</p>
|
|
<p><strong>Products: </strong> {{ counter.products.all() }}</p>
|
|
|
|
|
|
<div>
|
|
<h3>Sellings</h3>
|
|
{% if last_basket %}
|
|
<h4>Last selling: </h4>
|
|
<p>Client: {{ last_customer }}, new amount: {{ new_customer_amount }} €.</p>
|
|
<ul>
|
|
{% for s in last_basket %}
|
|
<li>{{ s }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p><strong>Total: {{ last_total }} €</strong></p>
|
|
{% endif %}
|
|
{% if barmen %}
|
|
<p>Enter client code:</p>
|
|
<form method="post" action="{{ url('counter:details', counter_id=counter.id) }}">
|
|
{% csrf_token %}
|
|
{{ form.as_p() }}
|
|
<input type="submit" value="CLICK" />
|
|
</form>
|
|
{% else %}
|
|
<p>Please, login</p>
|
|
{% endif %}
|
|
</div>
|
|
<div>
|
|
<h3>Barman: </h3>
|
|
<ul>
|
|
{% for b in barmen %}
|
|
<li>{{ barman_logout_link(b) }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<form method="post" action="{{ url('counter:login', counter_id=counter.id) }}">
|
|
{% csrf_token %}
|
|
{{ login_form.as_p() }}
|
|
<input type="submit" value="login" />
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|