{% extends "pretixpresale/organizers/base.html" %} {% load i18n %} {% load eventurl %} {% load urlreplace %} {% load money %} {% load bootstrap3 %} {% block title %}{% trans "Your account" %}{% endblock %} {% block content %}

{% trans "Your account" %}

{% trans "Account information" %}

{% trans "Customer ID" %}
#{{ customer.identifier }}
{% if customer.provider %}
{% trans "Login method" %}
{{ customer.provider.name }}
{% endif %}
{% trans "E-mail" %}
{{ customer.email }}
{% trans "Name" %}
{{ customer.name }}
{% if customer.phone %}
{% trans "Phone" %}
{{ customer.phone }}
{% endif %}
{% for o in orders %} {% endfor %}
{% trans "Order code" %} {% trans "Event" %} {% trans "Order date" %} {% trans "Order total" %} {% trans "Positions" %} {% trans "Status" %}
{{ o.code }} {% if o.testmode %} {% trans "TEST MODE" %} {% endif %} {{ o.event }} {{ o.datetime|date:"SHORT_DATETIME_FORMAT" }} {% if o.customer_id != customer.pk %} {% endif %} {{ o.total|money:o.event.currency }} {{ o.count_positions|default_if_none:"0" }} {% include "pretixpresale/event/fragment_order_status.html" with order=o event=o.event %} {% trans "Details" %}
{% include "pretixcontrol/pagination.html" %}
{% for m in memberships %} {% empty %} {% endfor %}
{% trans "Memberships" %}
{% trans "Membership type" %} {% trans "Valid from" %} {% trans "Valid until" %} {% trans "Attendee name" %} {% trans "Usages" %}
{% if m.canceled %}{% endif %} {{ m.membership_type.name }} {% if m.canceled %}{% endif %} {% if m.testmode %}{% trans "TEST MODE" %}{% endif %} {{ m.date_start|date:"SHORT_DATETIME_FORMAT" }} {{ m.date_end|date:"SHORT_DATETIME_FORMAT" }} {{ m.attendee_name }}
{{ m.usages }} / {{ m.membership_type.max_usages|default_if_none:"∞" }}
{% trans "No memberships are stored in your account." %}
{% for ia in invoice_addresses %} {% empty %} {% endfor %}
{% trans "Address" %}
{{ ia.describe|linebreaksbr }}
{% trans "No addresses are stored in your account." %}
{% for ap in customer.attendee_profiles.all %} {% empty %} {% endfor %}
{% trans "Profile" %}
{{ ap.describe|linebreaksbr }}
{% trans "No attendee profiles are stored in your account." %}
{% endblock %}