{% if commerce_config.favicon_url %} {% endif %}
{% if commerce_config.logo_url %} {{ commerce_config.host_site_title }} logo {% endif %} {{ commerce_config.host_site_title }} Admin

Customer detail

Customer ID: {{ customer.public_id }}

Back to customers

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %}

Profile

Name: {{ customer.full_name or "Not provided" }}

Email: {{ customer.email }}

Phone: {{ customer.phone or "Not provided" }}

Company: {{ customer.company or "Not provided" }}

Status: {{ customer.status.value }}

Last login: {{ customer.last_login_at or "Never" }}

{% if customer.status.value == "blocked" %} {% else %} {% endif %}

Orders

{% if orders %}
{% for order in orders %} {% endfor %}
Order ID Product Price Status Amount Admin
{{ order.public_id }} {{ order.product_slug }} {{ order.price_code }} {{ order.status.value }} {{ order.amount.currency }} {{ order.amount.major() }} View order
{% else %}

No orders linked to this customer.

{% endif %}

Entitlements

{% if entitlements %}
{% for entitlement in entitlements %} {% endfor %}
Access ID Order Product Price Type Status Admin
{{ entitlement.public_id }} {{ entitlement.order_public_id or "?" }} {{ entitlement.product_slug or "?" }} {{ entitlement.price_code or "?" }} {{ entitlement.entitlement_type.value }} {{ entitlement.status.value }}
{% if entitlement.status.value == "cancelled" %} {% else %} {% endif %}
{% else %}

No entitlements linked to this customer.

{% endif %}

Sessions

{% if sessions %}
{% for customer_session in sessions %} {% endfor %}
Session ID Last seen Expires Revoked
{{ customer_session.public_id }} {{ customer_session.last_seen_at or "?" }} {{ customer_session.expires_at or "?" }} {{ customer_session.revoked_at or "No" }}
{% else %}

No customer portal sessions yet.

{% endif %}