{% extends "base.html" %} {% comment %} # This file is part of k4ever, a point-of-sale system # Contact............ # Website............ http://k4ever.someserver.de/ # Bug tracker........ http://k4ever.someserver.de/report # # Licensed under GNU Affero General Public License v3 or later {% endcomment %} {% block "content" %}

Konten Ein- und Auszahlungen

{% if transacted %}
{% if error %}

Beim Aufladen ist ein Fehler aufgetreten.

{% else %} {% if payout %}

Du hast Geld abgehoben.

{% else %}

Du hast Geld aufgeladen.

{% endif %} {% endif %}
{% endif %}
{% csrf_token %} {% include "form.html" with form=form %}

Kontodaten:

{% include "treasurer.html" %}

Geld überweisen

{% if transacted %}
{% if error %}

Beim Überweisen ist ein Fehler aufgetreten.

{% else %}

Du hast Geld aufgeladen.

{% endif %}
{% endif %}
{% csrf_token %} {% include "form.html" with form=vform %}

Vergangene Ein- und Auszahlungen

{% for transaction in history %} {% endfor %}
Datum Uhrzeit Betrag Typ Status
{{ transaction.dateTime|date:"j. F Y" }} {{ transaction.dateTime|date:"H:i" }} Uhr {{ transaction.amount|floatformat:2 }}€ {{ transaction.transactionType }} {% if not transaction.transactionType.needsCheck or transaction.checked %} Zahlung eingegangen {% else %} Zahlungsbestätigung steht noch aus {% endif %}
Datum Uhrzeit Betrag Typ Status

Vergangene Überweisungen

{% for transaction in vhistory %} {% endfor %}
Datum Uhrzeit Betrag Sender Typ Recipient Comment
{{ transaction.dateTime|date:"j. F Y" }} {{ transaction.dateTime|date:"H:i" }} Uhr {{ transaction.amount|floatformat:2 }}€ {{ transaction.user }} {% if user.username|stringformat:"s" == transaction.user|stringformat:"s" %} Zahlung abgebucht {% else %} Zahlung eingegangen {% endif %} {{ transaction.recipient }} {{ transaction.comment }}
Datum Uhrzeit Betrag Sender Typ Recipient Comment
{% endblock %}