{% extends "pretixcontrol/wholesales/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load urlreplace %} {% block title %}{% trans "Wholesales" %}{% endblock %} {% block inside %}

{% trans "Create a new wholesale account" %}

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

{% blocktrans trimmed %} You currently do not have access to any wholesales. {% endblocktrans %}

{% else %}

{% blocktrans trimmed %} The list below shows all wholesales you have administrative access to. Click on the wholesale name to access details. {% endblocktrans %}

{% for wholesale in wholesales %} {% endfor %}
{% trans "Company name" %} {% trans "Contact name" %} {% trans "User" %} {% trans "Address" %} {% trans "City" %} {% trans "State" %} {% trans "Zip Code" %} {% trans "Phone" %} {% trans "Tax" %} {% trans "Status" %}
{{ wholesale.company_name }} {{ wholesale.contact_name }} {{ wholesale.email }} {{ wholesale.address }} {{ wholesale.city }} {{ wholesale.state }} {{ wholesale.zip_code }} {{ wholesale.phone }} {{ wholesale.tax }}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}