{% extends "admin/base.html" %} {% from 'shared/macros/headers.html' import page_header %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/tables.html' import table_wrapper, table_header, table_empty_state %} {% from 'shared/macros/pagination.html' import pagination %} {% block title %}Hosted Sites{% endblock %} {% block alpine_data %}hostingSitesList(){% endblock %} {% block content %} {{ page_header('Hosted Sites', action_label='New Site', action_url='/admin/hosting/sites/new', action_icon='plus') }}
{{ loading_state('Loading sites...') }} {{ error_state('Error loading sites') }}
{% call table_wrapper() %} {{ table_header(['Business', 'Status', 'Contact', 'Domain', 'Created', 'Actions']) }} {{ table_empty_state(6, title='No hosted sites found', x_message="search || filterStatus ? 'Try adjusting your search or filters' : 'Create your first hosted site to get started'", show_condition='sites.length === 0', icon='globe') }} {% endcall %} {{ pagination() }}
{% endblock %} {% block extra_scripts %} {% endblock %}