Customer account
Signed in as {{ customer.email }}.
Profile
Name: {{ customer.full_name or "Not provided" }}
Email: {{ customer.email }}
Phone: {{ customer.phone or "Not provided" }}
Company: {{ customer.company or "Not provided" }}
Access records
Total entitlements: {{ entitlements|length }}
Total orders: {{ orders|length }}
Orders
{% if orders %}| Order | Product | Price | Status | Amount |
|---|---|---|---|---|
| {{ order.public_id }} | {{ order.product_slug }} | {{ order.price_code }} | {{ order.status.value }} | {{ order.amount.currency }} {{ order.amount.major() }} |
No orders are linked to this account yet.
{% endif %}Entitlements
{% if entitlements %}| Access ID | Order | Product | Type | Status |
|---|---|---|---|---|
| {{ entitlement.public_id }} | {{ entitlement.order_public_id or "?" }} | {{ entitlement.product_slug or "?" }} | {{ entitlement.entitlement_type.value }} | {{ entitlement.status.value }} |
No entitlements are available yet.
{% endif %}