14 lines
758 B
HTML
14 lines
758 B
HTML
<div class="bg-white shadow rounded-lg p-4 sm:p-6 lg:p-8 mb-8">
|
|
<div class="mb-6 border-b border-gray-100 pb-4">
|
|
<h3 class="text-xl font-bold text-gray-900">Activity Logs</h3>
|
|
<p class="text-sm text-gray-500">Review recent actions and administrative changes.</p>
|
|
</div>
|
|
<div id="activity-logs-container" hx-get="{{ url_for('settings.settings_activity_logs') }}" hx-trigger="load">
|
|
<div class="flex justify-center p-12">
|
|
<div class="flex flex-col items-center">
|
|
<div class="animate-spin rounded-full h-10 w-10 border-b-2 border-cyan-600 mb-4"></div>
|
|
<p class="text-sm text-gray-500">Loading activity history...</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |