Files
orion/app/templates/admin/customers.html
Samir Boulahtit bb2e5fd260 refactor: standardize admin templates with shared macros
Migrate all admin templates to use standardized components:
- Use tabs macros (tabs_nav, tab_button) for tab navigation
- Use number_stepper for quantity/numeric inputs
- Use headers macros for consistent page layouts
- Use modals macros for dialog components

Affected pages: dashboard, settings, logs, content-pages, companies,
vendors, users, imports, marketplace, code-quality, and more.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-07 17:04:43 +01:00

43 lines
1.2 KiB
HTML

{# app/templates/admin/customers.html #}
{% extends "admin/base.html" %}
{% from 'shared/macros/headers.html' import page_header %}
{% block title %}Customers{% endblock %}
{% block alpine_data %}adminCustomers(){% endblock %}
{% block content %}
{{ page_header('Customers', subtitle='Manage platform customers') }}
<!-- Empty State -->
<div class="px-4 py-12 bg-white rounded-lg shadow-md dark:bg-gray-800">
<div class="text-center">
<span x-html="$icon('user-group', 'mx-auto h-12 w-12 text-gray-400')"></span>
<h3 class="mt-4 text-lg font-medium text-gray-900 dark:text-gray-100">
Customers Management
</h3>
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
Customer management features coming soon.
</p>
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
This section will allow you to view and manage customers across all vendors.
</p>
</div>
</div>
{% endblock %}
{% block extra_scripts %}
<script>
function adminCustomers() {
return {
...data(),
currentPage: 'customers',
init() {
console.log('Customers page initialized');
}
};
}
</script>
{% endblock %}