{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load urlreplace %} {% load bootstrap3 %} {% load money %} {% block title %}Wallets{% endblock %} {% block inner %}

Wallets

{% if wallets|length == 0 and not filter_form.filtered %}

No wallets have been created yet.

{% else %}

Filter

{% bootstrap_field filter_form.query %}
{% bootstrap_field filter_form.state %}
{% for w in wallets %} {% endfor %}
{% trans "PAN" %} {% trans "Customer" %} {% trans "Creation date" %} {% trans "Last transaction" %} {% trans "Current balance" %}
{{ w.pan }} {% if w.customer %} {{ w.customer.name }} {% endif %} {{ w.created_at|date:"SHORT_DATETIME_FORMAT" }} {% if w.last_tx %}{{ w.last_tx|date:"SHORT_DATETIME_FORMAT" }}{% endif %} {{ w.cached_balance|money:w.currency }}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}