2016-09-13 00:04:49 +00:00
|
|
|
|
{% extends "core/base.jinja" %}
|
2017-06-07 14:43:50 +00:00
|
|
|
|
{% from 'core/macros.jinja' import user_profile_link, paginate %}
|
2016-09-13 00:04:49 +00:00
|
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
|
{% trans %}Cash register summary list{% endtrans %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% if cashsummary_list %}
|
2016-10-10 16:43:40 +00:00
|
|
|
|
<h3>{% trans %}Cash register summary list{% endtrans %}</h3>
|
|
|
|
|
<h5>{% trans %}Theoric sums{% endtrans %}</h5>
|
2016-10-10 16:29:13 +00:00
|
|
|
|
<form action="" method="get">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
{{ form }}
|
|
|
|
|
<p><input type="submit" value="{% trans %}Show{% endtrans %}" /></p>
|
|
|
|
|
</form>
|
2016-09-13 00:04:49 +00:00
|
|
|
|
<h6>{% trans %}Refillings{% endtrans %}</h6>
|
|
|
|
|
<p>
|
|
|
|
|
{% for b,s in refilling_sums.items() %}
|
|
|
|
|
{{ b }}: {{ s }} €<br/>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</p>
|
|
|
|
|
<h6>{% trans %}Cash register summaries{% endtrans %}</h6>
|
|
|
|
|
<p>
|
|
|
|
|
{% for b,s in summaries_sums.items() %}
|
|
|
|
|
{{ b }}: {{ s }} €<br/>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</p>
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{% trans %}User{% endtrans %}</td>
|
|
|
|
|
<td>{% trans %}Counter{% endtrans %}</td>
|
|
|
|
|
<td>{% trans %}Date{% endtrans %}</td>
|
|
|
|
|
<td>{% trans %}Total{% endtrans %}</td>
|
|
|
|
|
<td>{% trans %}Emptied{% endtrans %}</td>
|
|
|
|
|
<td>{% trans %}Comment{% endtrans %}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2017-03-13 15:32:59 +00:00
|
|
|
|
{% for c in cashsummary_list %}
|
2016-09-13 00:04:49 +00:00
|
|
|
|
<tr>
|
|
|
|
|
<td>{{ user_profile_link(c.user) }}</td>
|
|
|
|
|
<td>{{ c.counter }}</td>
|
|
|
|
|
<td>{{ c.date|localtime|date(DATETIME_FORMAT) }} - {{ c.date|localtime|time(DATETIME_FORMAT) }}</td>
|
|
|
|
|
<td>{{ c.get_total() }} €</td>
|
|
|
|
|
{% if c.emptied %}
|
|
|
|
|
<td>{% trans %}yes{% endtrans %}</td>
|
|
|
|
|
{% else %}
|
|
|
|
|
<td></td>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<td>{{ c.comment }}</td>
|
2016-09-29 12:54:03 +00:00
|
|
|
|
<td><a href="{{ url('counter:cash_summary_edit', cashsummary_id=c.id) }}">{% trans %}Edit{% endtrans %}</td>
|
2016-09-13 00:04:49 +00:00
|
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2017-03-13 15:32:59 +00:00
|
|
|
|
<br>
|
|
|
|
|
{% if is_paginated %}
|
2017-06-07 14:43:50 +00:00
|
|
|
|
{{ paginate(page_obj, paginator) }}
|
2017-03-13 15:32:59 +00:00
|
|
|
|
{% endif %}
|
2016-09-13 00:04:49 +00:00
|
|
|
|
{% else %}
|
|
|
|
|
{% trans %}There is no cash register summary in this website.{% endtrans %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|