{# app/templates/admin/store-detail.html #} {% extends "admin/base.html" %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/headers.html' import detail_page_header %} {% from 'shared/macros/modals.html' import confirm_modal, confirm_modal_dynamic %} {% block title %}Store Details{% endblock %} {% block alpine_data %}adminStoreDetail(){% endblock %} {% block content %} {% call detail_page_header("store?.name || 'Store Details'", '/admin/stores', subtitle_show='store') %} {% endcall %} {{ loading_state('Loading store details...') }} {{ error_state('Error loading store') }}

Quick Actions

Edit Store

Verification

-

Status

-

Created

-

Last Updated

-

No Subscription Found

This store doesn't have a subscription yet.

Manage on Merchant Page

Basic Information

Store Code

-

Name

-

Subdomain

-

Description

-

Contact Information

Owner Email

-

Owner's authentication email

Contact Email

-

Public business contact

Phone

-

Website

-

Business Details

Business Address

-

Tax Number

-

Owner Information

Owner User ID

-

Owner Username

-

Owner Email

-

Marketplace CSV URLs

French (FR)

English (EN)

German (DE)

Custom Domains

Loading domains...

No custom domains configured.

Custom Subdomains

Each platform membership can have a custom subdomain override. If not set, the store's default subdomain () is used on each platform.

Loading subdomains...

No active platform memberships found.

More Actions

This store belongs to merchant: . Contact info and ownership are managed at the merchant level.

{{ confirm_modal_dynamic( 'deleteStoreModal', 'Delete Store', "'Are you sure you want to delete \"' + (store?.name || '') + '\"? This will permanently delete all products, orders, customers, and team members. This action cannot be undone!'", 'confirmDeleteStoreStep()', 'showDeleteStoreModal', 'Delete', 'Cancel', 'danger' ) }} {{ confirm_modal_dynamic( 'deleteStoreFinalModal', 'Final Confirmation', "'FINAL CONFIRMATION: Are you absolutely sure you want to permanently delete \"' + (store?.name || '') + '\" and ALL associated data?'", 'deleteStore()', 'showDeleteStoreFinalModal', 'Permanently Delete', 'Cancel', 'danger' ) }}
{% endblock %} {% block extra_scripts %} {% endblock %}