{% extends "dashboard/layout.html" %} {% load i18n %} {% load url from future %} {% block title %} {% trans "Merchant & marketplace management" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block dashboard_content %}

{% trans "Add merchant account" %}

{% trans "Add merchant account" %}

{% trans "Merchants" %}

{% for merchant in merchant_list %} {% with marketplace_list=merchant.marketplaces.all %} {% for marketplace in marketplace_list %} {% if forloop.first %} {% include "oscar_mws/dashboard/partials/merchant_table_fields.html" %} {% endif %} {% if forloop.first %} {% include "oscar_mws/dashboard/partials/merchant_table_actions.html" %} {% endif %} {% empty %} {% include "oscar_mws/dashboard/partials/merchant_table_fields.html" %} {% include "oscar_mws/dashboard/partials/merchant_table_actions.html" %} {% endfor %} {% endwith %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Seller ID" %} {% trans "AWS API access keys" %} {% trans "Name" %} {% trans "Marketplace ID" %} {% trans "Region" %} {% trans "Domain" %} {% trans "Currency" %}
{{ marketplace.name }} {{ marketplace.marketplace_id }} {{ marketplace.get_region_display }} {{ marketplace.domain }} {{ marketplace.currency_code }}
{% trans "No marketplaces available for this merchant account." %}
{% trans "No merchant accounts available." %}
{% endblock %}