{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Shop Verification Registry - {{ brand_name }}{% endblock %} {% block body_class %}shop-registry-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Shop Verification Registry

← Back to Dashboard
Total Shops
{{ shops|length }}
Verified
{{ verified_count }}
Pending
{{ pending_count }}
Suspended
{{ suspended_count }}

{% if search_query %} Search Results for "{{ search_query }}" ({{ shops|length }} shops) {% else %} All Registered Shops {% endif %}

{% if search_query %} Clear search (show all) {% endif %}
{% for shop in shops %}

{{ shop.name }}

{{ shop.brand or 'No brand' }}

{% if shop.verified %} Verified {% else %} Unverified {% endif %}

{{ shop.status|capitalize }}
Code: {{ shop.code }}
Location: {{ shop.address or 'Not provided' }}
Phone: {{ shop.phone or 'Not provided' }}
Email: {{ shop.email or 'Not provided' }}
Type: {{ shop.business_type or 'Not provided' }}
Owner: {{ shop.owner_name or 'Not provided' }}
Admins: {{ shop.admin_count }}
Registered: {{ shop.created_at }}
{% if shop.verified_at %}
Verified At: {{ shop.verified_at }}
{% endif %}
View Details
{% else %}

No shops registered yet.

{% endfor %}
{% endblock %}