diff --git a/blood_bank/__pycache__/forms.cpython-312.pyc b/blood_bank/__pycache__/forms.cpython-312.pyc index ba6b4189..9283a135 100644 Binary files a/blood_bank/__pycache__/forms.cpython-312.pyc and b/blood_bank/__pycache__/forms.cpython-312.pyc differ diff --git a/blood_bank/__pycache__/urls.cpython-312.pyc b/blood_bank/__pycache__/urls.cpython-312.pyc index cae8fe80..0d2a88b5 100644 Binary files a/blood_bank/__pycache__/urls.cpython-312.pyc and b/blood_bank/__pycache__/urls.cpython-312.pyc differ diff --git a/blood_bank/__pycache__/views.cpython-312.pyc b/blood_bank/__pycache__/views.cpython-312.pyc index b3de3f34..6ce82638 100644 Binary files a/blood_bank/__pycache__/views.cpython-312.pyc and b/blood_bank/__pycache__/views.cpython-312.pyc differ diff --git a/blood_bank/forms.py b/blood_bank/forms.py index a187e648..6fe1ac3b 100644 --- a/blood_bank/forms.py +++ b/blood_bank/forms.py @@ -1,5 +1,5 @@ from django import forms -from django.contrib.auth.models import User +from accounts.models import User from django.utils import timezone from datetime import timedelta from patients.models import PatientProfile diff --git a/blood_bank/urls.py b/blood_bank/urls.py index 2d2164f9..98fa7f5f 100644 --- a/blood_bank/urls.py +++ b/blood_bank/urls.py @@ -8,7 +8,7 @@ urlpatterns = [ path('', views.dashboard, name='dashboard'), # Donor Management - path('donors/', views.donor_list, name='donor_list'), + path('donors/', views.DonorListView.as_view(), name='donor_list'), path('donors//', views.donor_detail, name='donor_detail'), path('donors/create/', views.donor_create, name='donor_create'), path('donors//update/', views.donor_update, name='donor_update'), diff --git a/blood_bank/views.py b/blood_bank/views.py index 64a01258..d40f1ba9 100644 --- a/blood_bank/views.py +++ b/blood_bank/views.py @@ -1,3 +1,4 @@ +from django.contrib.auth.mixins import LoginRequiredMixin from django.shortcuts import render, get_object_or_404, redirect from django.contrib.auth.decorators import login_required, permission_required from django.contrib import messages @@ -10,6 +11,8 @@ from django.contrib.auth.models import User from datetime import timedelta import json +from django.views.generic import ListView + from .models import ( BloodGroup, Donor, BloodComponent, BloodUnit, BloodTest, CrossMatch, BloodRequest, BloodIssue, Transfusion, AdverseReaction, InventoryLocation, @@ -61,45 +64,50 @@ def dashboard(request): # Donor Management Views -@login_required -def donor_list(request): - """List all donors with filtering and search""" - donors = Donor.objects.select_related('blood_group').order_by('-registration_date') +class DonorListView(LoginRequiredMixin, ListView): + model = Donor + template_name = 'blood_bank/donors/donor_list.html' + context_object_name = 'page_obj' + paginate_by = 25 - # Search functionality - search_query = request.GET.get('search') - if search_query: - donors = donors.filter( - Q(donor_id__icontains=search_query) | - Q(first_name__icontains=search_query) | - Q(last_name__icontains=search_query) | - Q(phone__icontains=search_query) - ) + def get_queryset(self): + queryset = Donor.objects.select_related('blood_group').order_by('-registration_date') - # Filter by status - status_filter = request.GET.get('status') - if status_filter: - donors = donors.filter(status=status_filter) + # Search functionality + search_query = self.request.GET.get('search') + if search_query: + queryset = queryset.filter( + Q(donor_id__icontains=search_query) | + Q(first_name__icontains=search_query) | + Q(last_name__icontains=search_query) | + Q(phone__icontains=search_query) + ) - # Filter by blood group - blood_group_filter = request.GET.get('blood_group') - if blood_group_filter: - donors = donors.filter(blood_group_id=blood_group_filter) + # Filter by status + status_filter = self.request.GET.get('status') + if status_filter: + queryset = queryset.filter(status=status_filter) - paginator = Paginator(donors, 25) - page_number = request.GET.get('page') - page_obj = paginator.get_page(page_number) + # Filter by blood group + blood_group_filter = self.request.GET.get('blood_group') + if blood_group_filter: + queryset = queryset.filter(blood_group_id=blood_group_filter) - context = { - 'page_obj': page_obj, - 'blood_groups': BloodGroup.objects.all(), - 'status_choices': Donor.STATUS_CHOICES, - 'search_query': search_query, - 'status_filter': status_filter, - 'blood_group_filter': blood_group_filter, - } + return queryset + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + + context.update({ + 'blood_groups': BloodGroup.objects.all(), + 'status_choices': Donor.STATUS_CHOICES, + 'search_query': self.request.GET.get('search'), + 'status_filter': self.request.GET.get('status'), + 'blood_group_filter': self.request.GET.get('blood_group'), + }) + + return context - return render(request, 'blood_bank/donors/donor_list.html', context) @login_required @@ -553,7 +561,7 @@ def inventory_overview(request): 'locations': locations, } - return render(request, 'blood_bank/inventory/inventory_overview.html', context) + return render(request, 'blood_bank/inventory/inventory_dashboard.html', context) # Quality Control Views diff --git a/inventory/__pycache__/views.cpython-312.pyc b/inventory/__pycache__/views.cpython-312.pyc index 7a509f8d..d131f812 100644 Binary files a/inventory/__pycache__/views.cpython-312.pyc and b/inventory/__pycache__/views.cpython-312.pyc differ diff --git a/inventory/views.py b/inventory/views.py index 67bc3749..59ebd997 100644 --- a/inventory/views.py +++ b/inventory/views.py @@ -28,10 +28,6 @@ from .forms import ( ) -# ============================================================================ -# DASHBOARD AND OVERVIEW VIEWS -# ============================================================================ - class InventoryDashboardView(LoginRequiredMixin, TemplateView): """ Main inventory dashboard with comprehensive statistics and recent activity. @@ -52,11 +48,11 @@ class InventoryDashboardView(LoginRequiredMixin, TemplateView): ).count() # Stock statistics - # low_stock_items = InventoryStock.objects.filter( - # tenant=user.tenant, - # quantity_available__lte=F('min_stock_level') - # ).count() - # context['low_stock_items'] = low_stock_items + low_stock_items = InventoryStock.objects.filter( + inventory_item__tenant=user.tenant, + quantity_available__lte=F('inventory_item__min_stock_level') + ).count() + context['low_stock_items'] = low_stock_items expired_items = InventoryStock.objects.filter( inventory_item__tenant=user.tenant, @@ -84,22 +80,18 @@ class InventoryDashboardView(LoginRequiredMixin, TemplateView): tenant=user.tenant ).order_by('-created_at')[:10] - # context['low_stock_alerts'] = InventoryStock.objects.filter( - # inventory_item__tenant=user.tenant, - # quantity__lte=F('minimum_stock_level') - # ).select_related('item', 'location').order_by('quantity')[:10] + context['low_stock_alerts'] = InventoryStock.objects.filter( + inventory_item__tenant=user.tenant, + quantity_available__lte=F('inventory_item__min_stock_level') + ).select_related('inventory_item', 'location').order_by('quantity_available')[:10] - # context['recent_stock_movements'] = InventoryStock.objects.filter( - # tenant=user.tenant - # ).order_by('-updated_at')[:10] + context['recent_stock_movements'] = InventoryStock.objects.filter( + inventory_item__tenant=user.tenant + ).order_by('-updated_at')[:10] return context -# ============================================================================ -# SUPPLIER VIEWS (FULL CRUD - Master Data) -# ============================================================================ - class SupplierListView(LoginRequiredMixin, ListView): """ List all suppliers with search and filtering capabilities. @@ -286,10 +278,6 @@ class SupplierDeleteView(LoginRequiredMixin, DeleteView): return redirect(self.success_url) -# ============================================================================ -# INVENTORY LOCATION VIEWS (FULL CRUD - Master Data) -# ============================================================================ - class InventoryLocationListView(LoginRequiredMixin, ListView): """ List all inventory locations. @@ -442,10 +430,6 @@ class InventoryLocationDeleteView(LoginRequiredMixin, DeleteView): return response -# ============================================================================ -# INVENTORY ITEM VIEWS (FULL CRUD - Master Data) -# ============================================================================ - class InventoryItemListView(LoginRequiredMixin, ListView): """ List all inventory items with search and filtering. @@ -609,10 +593,6 @@ class InventoryItemDeleteView(LoginRequiredMixin, DeleteView): return redirect(self.success_url) -# ============================================================================ -# INVENTORY STOCK VIEWS (LIMITED CRUD - Operational Data) -# ============================================================================ - class InventoryStockListView(LoginRequiredMixin, ListView): """ List all inventory stock with filtering and search. @@ -736,10 +716,6 @@ class InventoryStockUpdateView(LoginRequiredMixin, UpdateView): return response -# ============================================================================ -# PURCHASE ORDER VIEWS (RESTRICTED CRUD - Operational Data) -# ============================================================================ - class PurchaseOrderListView(LoginRequiredMixin, ListView): """ List all purchase orders with filtering. @@ -872,10 +848,6 @@ class PurchaseOrderUpdateView(LoginRequiredMixin, UpdateView): return response -# ============================================================================ -# HTMX AND AJAX VIEWS -# ============================================================================ - @login_required def inventory_stats(request): """ @@ -898,6 +870,10 @@ def inventory_stats(request): tenant=user.tenant, status__in=['PENDING', 'APPROVED', 'ORDERED'] ).count(), + 'recent_stock_movements': InventoryStock.objects.filter( + inventory_item__tenant=user.tenant, + movement_date__gte=timezone.now().date() - timedelta(days=30) + ) } return render(request, 'inventory/partials/inventory_stats.html', stats) @@ -919,10 +895,6 @@ def stock_search(request): }) -# ============================================================================ -# ACTION VIEWS FOR WORKFLOW OPERATIONS -# ============================================================================ - @login_required def adjust_stock(request, stock_id): """ diff --git a/logs/hospital_management.log b/logs/hospital_management.log index 760022f4..8254bfec 100644 --- a/logs/hospital_management.log +++ b/logs/hospital_management.log @@ -177553,3 +177553,3886 @@ INFO 2025-09-04 19:18:32,548 basehttp 18782 6199914496 "GET /en/htmx/system-noti INFO 2025-09-04 19:18:41,898 basehttp 18782 6199914496 "GET /en/blood-bank/units/45/ HTTP/1.1" 200 31883 INFO 2025-09-04 19:18:41,931 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 INFO 2025-09-04 19:19:32,572 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:20:32,553 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:21:25,449 basehttp 18782 6199914496 "GET /en/blood-bank/units/ HTTP/1.1" 200 83317 +INFO 2025-09-04 19:21:25,481 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:21:49,219 basehttp 18782 6199914496 "GET /en/blood-bank/units/ HTTP/1.1" 200 82378 +INFO 2025-09-04 19:21:49,255 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:22:21,181 basehttp 18782 6199914496 "GET /en/blood-bank/units/ HTTP/1.1" 200 83318 +INFO 2025-09-04 19:22:21,217 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:22:34,911 basehttp 18782 6199914496 "GET /en/blood-bank/units/48/ HTTP/1.1" 200 31824 +INFO 2025-09-04 19:22:34,943 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:23:09,177 basehttp 18782 6199914496 "GET /en/blood-bank/units/38/test/ HTTP/1.1" 200 38747 +INFO 2025-09-04 19:23:09,208 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:23:31,424 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:23:47,720 basehttp 18782 6199914496 "GET /en/integration HTTP/1.1" 301 0 +INFO 2025-09-04 19:23:47,738 basehttp 18782 6216740864 "GET /en/integration/ HTTP/1.1" 200 35372 +INFO 2025-09-04 19:23:47,772 basehttp 18782 6216740864 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:23:47,779 basehttp 18782 6233567232 "GET /en/integration/htmx/system-health/ HTTP/1.1" 200 396 +ERROR 2025-09-04 19:23:47,789 log 18782 6199914496 Internal Server Error: /en/integration/htmx/stats/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/decorators.py", line 59, in _view_wrapper + return view_func(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/integration/views.py", line 849, in integration_stats + 'total_endpoints': IntegrationEndpoint.objects.filter(endpoint__external_system__tenant=request.user.tenant).count(), + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/manager.py", line 87, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1493, in filter + return self._filter_or_exclude(False, args, kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1511, in _filter_or_exclude + clone._filter_or_exclude_inplace(negate, args, kwargs) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1518, in _filter_or_exclude_inplace + self._query.add_q(Q(*args, **kwargs)) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1646, in add_q + clause, _ = self._add_q(q_object, can_reuse) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1678, in _add_q + child_clause, needed_inner = self.build_filter( + ^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1526, in build_filter + lookups, parts, reffed_expression = self.solve_lookup_type(arg, summarize) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1333, in solve_lookup_type + _, field, _, lookup_parts = self.names_to_path(lookup_splitted, self.get_meta()) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1805, in names_to_path + raise FieldError( +django.core.exceptions.FieldError: Cannot resolve keyword 'endpoint' into field. Choices are: created_at, created_by, created_by_id, data_mappings, description, direction, endpoint_id, endpoint_type, execution_count, executions, external_system, external_system_id, failure_count, headers, is_active, last_executed_at, logs, method, name, parameters, path, request_format, request_mapping, request_schema, response_format, response_mapping, response_schema, success_count, updated_at +ERROR 2025-09-04 19:23:47,791 basehttp 18782 6199914496 "GET /en/integration/htmx/stats/ HTTP/1.1" 500 119604 +INFO 2025-09-04 19:23:53,508 basehttp 18782 6199914496 "GET /en/integration/systems/create/ HTTP/1.1" 200 45558 +INFO 2025-09-04 19:23:53,541 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +ERROR 2025-09-04 19:24:25,092 log 18782 6199914496 Internal Server Error: /en/integration/htmx/stats/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/decorators.py", line 59, in _view_wrapper + return view_func(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/integration/views.py", line 849, in integration_stats + 'total_endpoints': IntegrationEndpoint.objects.filter(endpoint__external_system__tenant=request.user.tenant).count(), + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/manager.py", line 87, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1493, in filter + return self._filter_or_exclude(False, args, kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1511, in _filter_or_exclude + clone._filter_or_exclude_inplace(negate, args, kwargs) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1518, in _filter_or_exclude_inplace + self._query.add_q(Q(*args, **kwargs)) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1646, in add_q + clause, _ = self._add_q(q_object, can_reuse) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1678, in _add_q + child_clause, needed_inner = self.build_filter( + ^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1526, in build_filter + lookups, parts, reffed_expression = self.solve_lookup_type(arg, summarize) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1333, in solve_lookup_type + _, field, _, lookup_parts = self.names_to_path(lookup_splitted, self.get_meta()) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1805, in names_to_path + raise FieldError( +django.core.exceptions.FieldError: Cannot resolve keyword 'endpoint' into field. Choices are: created_at, created_by, created_by_id, data_mappings, description, direction, endpoint_id, endpoint_type, execution_count, executions, external_system, external_system_id, failure_count, headers, is_active, last_executed_at, logs, method, name, parameters, path, request_format, request_mapping, request_schema, response_format, response_mapping, response_schema, success_count, updated_at +ERROR 2025-09-04 19:24:25,093 basehttp 18782 6199914496 "GET /en/integration/htmx/stats/ HTTP/1.1" 500 119604 +ERROR 2025-09-04 19:24:36,593 log 18782 6199914496 Internal Server Error: /en/integration/endpoints/create/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 220, in _get_response + response = response.render() + ^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/response.py", line 114, in render + self.content = self.rendered_content + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/response.py", line 90, in rendered_content + template = self.resolve_template(self.template_name) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/response.py", line 72, in resolve_template + return select_template(template, using=self.using) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/loader.py", line 47, in select_template + raise TemplateDoesNotExist(", ".join(template_name_list), chain=chain) +django.template.exceptions.TemplateDoesNotExist: integration/integration_endpoint_form.html +ERROR 2025-09-04 19:24:36,594 basehttp 18782 6199914496 "GET /en/integration/endpoints/create/ HTTP/1.1" 500 83628 +INFO 2025-09-04 19:24:40,803 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:24:44,069 basehttp 18782 6199914496 "GET /en/blood-bank/units/create/ HTTP/1.1" 200 49215 +INFO 2025-09-04 19:24:44,103 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:25:46,956 basehttp 18782 6199914496 "GET /en/blood-bank/donors/create/ HTTP/1.1" 200 29876 +INFO 2025-09-04 19:25:46,988 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:25:52,377 basehttp 18782 6199914496 "GET /en/blood-bank/units/create/ HTTP/1.1" 200 49215 +INFO 2025-09-04 19:25:52,409 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:25:56,487 basehttp 18782 6199914496 "GET /en/blood-bank/requests/create/ HTTP/1.1" 200 53506 +INFO 2025-09-04 19:25:56,520 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:26:16,823 basehttp 18782 6199914496 "GET /en/blood-bank/requests/38/ HTTP/1.1" 200 28829 +INFO 2025-09-04 19:26:16,857 basehttp 18782 6199914496 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +ERROR 2025-09-04 19:26:25,074 log 18782 6199914496 Internal Server Error: /en/blood-bank/requests/38/issue/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/decorators.py", line 59, in _view_wrapper + return view_func(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/decorators.py", line 59, in _view_wrapper + return view_func(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/views.py", line 384, in blood_issue_create + form = BloodIssueForm(initial={ + ^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/forms.py", line 221, in __init__ + self.fields['issued_to'].queryset = User.objects.filter(is_staff=True) + ^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/manager.py", line 196, in __get__ + raise AttributeError( +AttributeError: Manager isn't available; 'auth.User' has been swapped for 'accounts.User' +ERROR 2025-09-04 19:26:25,076 basehttp 18782 6199914496 "GET /en/blood-bank/requests/38/issue/ HTTP/1.1" 500 86632 +INFO 2025-09-04 19:26:51,088 autoreload 18782 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/forms.py changed, reloading. +INFO 2025-09-04 19:26:51,498 autoreload 23202 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 19:26:54,093 basehttp 23202 6164492288 "GET /en/blood-bank/requests/38/issue/ HTTP/1.1" 200 36707 +INFO 2025-09-04 19:26:54,130 basehttp 23202 6164492288 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:27:12,381 basehttp 23202 6164492288 "GET /en/blood-bank/requests/38/ HTTP/1.1" 200 28829 +INFO 2025-09-04 19:27:12,415 basehttp 23202 6164492288 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:27:26,318 basehttp 23202 6164492288 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:27:27,200 basehttp 23202 6164492288 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +ERROR 2025-09-04 19:27:29,089 log 23202 6164492288 Internal Server Error: /en/blood-bank/inventory/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/decorators.py", line 59, in _view_wrapper + return view_func(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/views.py", line 556, in inventory_overview + return render(request, 'blood_bank/inventory/inventory_overview.html', context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/shortcuts.py", line 25, in render + content = loader.render_to_string(template_name, context, request, using=using) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/loader.py", line 61, in render_to_string + template = get_template(template_name, using=using) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/loader.py", line 19, in get_template + raise TemplateDoesNotExist(template_name, chain=chain) +django.template.exceptions.TemplateDoesNotExist: blood_bank/inventory/inventory_overview.html +ERROR 2025-09-04 19:27:29,090 basehttp 23202 6164492288 "GET /en/blood-bank/inventory/ HTTP/1.1" 500 105817 +INFO 2025-09-04 19:28:04,734 autoreload 23202 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/views.py changed, reloading. +INFO 2025-09-04 19:28:05,237 autoreload 23753 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 19:28:06,128 basehttp 23753 6161575936 "GET /en/blood-bank/inventory/ HTTP/1.1" 200 27340 +INFO 2025-09-04 19:28:06,171 basehttp 23753 6161575936 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:29:06,167 basehttp 23753 6161575936 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:29:45,424 basehttp 23753 6161575936 "GET /en/blood-bank/inventory/ HTTP/1.1" 200 28222 +WARNING 2025-09-04 19:29:45,432 basehttp 23753 6161575936 "GET /static/plugins/chart.js/dist/Chart.min.css HTTP/1.1" 404 2032 +INFO 2025-09-04 19:29:45,463 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:29:49,790 basehttp 23753 6178402304 "GET /en/blood-bank/units/create/ HTTP/1.1" 200 49215 +INFO 2025-09-04 19:29:49,824 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:30:00,335 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:30:11,619 basehttp 23753 6178402304 "GET /en/blood-bank/donors/ HTTP/1.1" 200 84131 +INFO 2025-09-04 19:30:11,650 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:30:19,702 basehttp 23753 6178402304 "GET /en/blood-bank/donors/50/ HTTP/1.1" 200 29806 +INFO 2025-09-04 19:30:19,733 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:30:34,373 basehttp 23753 6178402304 "GET /en/blood-bank/units/93/ HTTP/1.1" 200 31368 +INFO 2025-09-04 19:30:34,405 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:30:41,692 basehttp 23753 6178402304 "GET /en/blood-bank/donors/50/eligibility/ HTTP/1.1" 200 29510 +INFO 2025-09-04 19:30:41,724 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:30:59,101 basehttp 23753 6178402304 "GET /en/blood-bank/donors/50/update/ HTTP/1.1" 200 30109 +INFO 2025-09-04 19:30:59,129 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:31:19,746 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:31:26,355 basehttp 23753 6178402304 "GET /en/blood-bank/donors/50/eligibility/ HTTP/1.1" 200 29510 +INFO 2025-09-04 19:31:26,386 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:31:35,945 basehttp 23753 6178402304 "GET /en/blood-bank/donors/50/ HTTP/1.1" 200 29806 +INFO 2025-09-04 19:31:35,977 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:31:45,499 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:31:49,340 basehttp 23753 6178402304 "GET /en/blood-bank/donors/50/eligibility/ HTTP/1.1" 200 29510 +INFO 2025-09-04 19:31:49,372 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:31:55,484 basehttp 23753 6178402304 "GET /en/blood-bank/donors/50/ HTTP/1.1" 200 29806 +INFO 2025-09-04 19:31:55,513 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:32:45,496 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:33:45,499 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:34:42,420 basehttp 23753 6178402304 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83270 +INFO 2025-09-04 19:34:42,462 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:35:42,466 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:36:42,477 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:37:42,478 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:38:42,481 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:39:42,473 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:40:42,482 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:40:51,423 basehttp 23753 6178402304 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83896 +INFO 2025-09-04 19:40:51,461 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:41:02,977 basehttp 23753 6178402304 "GET /en/blood-bank/units/ HTTP/1.1" 200 83318 +INFO 2025-09-04 19:41:03,016 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:41:35,526 basehttp 23753 6178402304 "GET /en/blood-bank/units/ HTTP/1.1" 200 83157 +INFO 2025-09-04 19:41:35,562 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:42:22,475 basehttp 23753 6178402304 "GET /en/blood-bank/units/ HTTP/1.1" 200 83148 +INFO 2025-09-04 19:42:22,510 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:42:23,616 basehttp 23753 6178402304 "GET /en/blood-bank/units/ HTTP/1.1" 200 83148 +INFO 2025-09-04 19:42:23,651 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:43:23,666 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:44:23,657 basehttp 23753 6178402304 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:45:20,124 autoreload 23753 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/views.py changed, reloading. +INFO 2025-09-04 19:45:20,647 autoreload 31399 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 19:45:23,703 basehttp 31399 6199586816 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:46:23,678 basehttp 31399 6199586816 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:47:12,102 autoreload 31399 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/views.py changed, reloading. +INFO 2025-09-04 19:47:12,537 autoreload 32245 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 19:47:35,493 autoreload 32245 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/blood_bank/urls.py changed, reloading. +INFO 2025-09-04 19:47:35,808 autoreload 32428 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 19:47:37,262 basehttp 32428 6162673664 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:47:55,897 basehttp 32428 6162673664 "GET /en/blood-bank/donors HTTP/1.1" 301 0 +INFO 2025-09-04 19:47:55,919 basehttp 32428 6179500032 "GET /en/blood-bank/donors/ HTTP/1.1" 200 84464 +INFO 2025-09-04 19:47:55,946 basehttp 32428 6179500032 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 19:48:03,195 log 32428 6179500032 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:48:03,196 basehttp 32428 6179500032 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:48:26,995 basehttp 32428 6179500032 "GET /en/blood-bank/donors/34/ HTTP/1.1" 200 28363 +WARNING 2025-09-04 19:48:27,015 log 32428 6179500032 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:48:27,015 basehttp 32428 6179500032 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:48:27,107 basehttp 32428 6179500032 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 19:48:29,332 log 32428 6179500032 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:48:29,333 basehttp 32428 6179500032 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 19:48:29,342 log 32428 6179500032 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:48:29,342 basehttp 32428 6179500032 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:48:32,376 basehttp 32428 6179500032 "GET /en/blood-bank/donors/ HTTP/1.1" 200 84464 +INFO 2025-09-04 19:48:32,390 basehttp 32428 6196326400 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 19:48:32,392 basehttp 32428 6229979136 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-04 19:48:32,392 basehttp 32428 6246805504 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +WARNING 2025-09-04 19:48:32,394 log 32428 6213152768 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:48:32,395 basehttp 32428 6213152768 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:48:32,398 basehttp 32428 6179500032 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 19:48:32,402 basehttp 32428 6162673664 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 19:48:32,403 basehttp 32428 6246805504 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 19:48:32,406 basehttp 32428 6213152768 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 19:48:32,407 basehttp 32428 6229979136 "GET /static/plugins/chart.js/dist/chart.js HTTP/1.1" 200 403805 +INFO 2025-09-04 19:48:32,408 basehttp 32428 6213152768 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-04 19:48:32,409 basehttp 32428 6196326400 "GET /static/plugins/apexcharts/dist/apexcharts.min.js HTTP/1.1" 200 574941 +INFO 2025-09-04 19:48:32,412 basehttp 32428 6213152768 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +INFO 2025-09-04 19:48:32,414 basehttp 32428 6162673664 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 19:48:32,416 basehttp 32428 6246805504 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-04 19:48:32,418 basehttp 32428 6229979136 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +INFO 2025-09-04 19:48:32,419 basehttp 32428 6179500032 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 19:48:32,608 basehttp 32428 6179500032 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 19:48:32,629 basehttp 32428 6229979136 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 19:48:32,629 basehttp 32428 6213152768 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 19:48:32,629 basehttp 32428 6179500032 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 19:48:32,630 basehttp 32428 6162673664 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 19:48:32,631 basehttp 32428 6246805504 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 19:48:32,632 basehttp 32428 6196326400 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 19:48:32,633 basehttp 32428 6162673664 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 19:48:32,634 basehttp 32428 6246805504 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 19:48:32,634 basehttp 32428 6196326400 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 19:48:32,635 basehttp 32428 6213152768 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 19:48:32,635 basehttp 32428 6179500032 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 19:48:32,637 basehttp 32428 6162673664 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 19:48:32,637 basehttp 32428 6213152768 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 19:48:32,638 basehttp 32428 6179500032 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 19:48:32,639 basehttp 32428 6196326400 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 19:48:32,639 basehttp 32428 6246805504 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 19:48:32,641 basehttp 32428 6213152768 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 19:48:32,641 basehttp 32428 6229979136 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 19:48:32,642 basehttp 32428 6196326400 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 19:48:32,644 basehttp 32428 6246805504 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 19:48:32,644 basehttp 32428 6162673664 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 19:48:32,644 basehttp 32428 6179500032 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 19:48:32,644 basehttp 32428 6213152768 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 19:48:32,649 basehttp 32428 6229979136 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 19:48:32,733 log 32428 6229979136 Not Found: /favicon.ico +WARNING 2025-09-04 19:48:32,733 basehttp 32428 6229979136 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 19:49:25,284 basehttp 32428 6229979136 "GET /en/blood-bank/donors/ HTTP/1.1" 200 84449 +WARNING 2025-09-04 19:49:25,299 log 32428 6229979136 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:49:25,299 basehttp 32428 6229979136 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:49:25,396 basehttp 32428 6229979136 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:49:39,694 basehttp 32428 6229979136 "GET /en/blood-bank/donors/ HTTP/1.1" 200 84449 +WARNING 2025-09-04 19:49:39,708 log 32428 6229979136 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:49:39,708 basehttp 32428 6229979136 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:49:39,766 basehttp 32428 6229979136 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:49:43,887 basehttp 32428 6229979136 "GET /en/blood-bank/donors/ HTTP/1.1" 200 84449 +INFO 2025-09-04 19:49:43,901 basehttp 32428 6179500032 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 19:49:43,901 basehttp 32428 6162673664 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-04 19:49:43,903 basehttp 32428 6196326400 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-04 19:49:43,908 basehttp 32428 6196326400 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 19:49:43,910 basehttp 32428 6229979136 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +WARNING 2025-09-04 19:49:43,912 log 32428 6246805504 Not Found: /.well-known/appspecific/com.chrome.devtools.json +INFO 2025-09-04 19:49:43,913 basehttp 32428 6196326400 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +WARNING 2025-09-04 19:49:43,913 basehttp 32428 6246805504 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:49:43,916 basehttp 32428 6246805504 - Broken pipe from ('127.0.0.1', 60925) +INFO 2025-09-04 19:49:43,920 basehttp 32428 6196326400 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-04 19:49:43,921 basehttp 32428 6263631872 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 19:49:43,924 basehttp 32428 6263631872 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +INFO 2025-09-04 19:49:43,924 basehttp 32428 6196326400 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-04 19:49:43,926 basehttp 32428 6162673664 "GET /static/plugins/chart.js/dist/chart.js HTTP/1.1" 200 403805 +INFO 2025-09-04 19:49:43,926 basehttp 32428 6196326400 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +INFO 2025-09-04 19:49:43,931 basehttp 32428 6179500032 "GET /static/plugins/apexcharts/dist/apexcharts.min.js HTTP/1.1" 200 574941 +INFO 2025-09-04 19:49:43,931 basehttp 32428 6213152768 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 19:49:43,931 basehttp 32428 6229979136 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 19:49:44,132 basehttp 32428 6229979136 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 19:49:44,156 basehttp 32428 6213152768 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 19:49:44,157 basehttp 32428 6229979136 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 19:49:44,157 basehttp 32428 6179500032 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 19:49:44,159 basehttp 32428 6162673664 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 19:49:44,159 basehttp 32428 6196326400 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 19:49:44,160 basehttp 32428 6263631872 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 19:49:44,161 basehttp 32428 6179500032 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 19:49:44,162 basehttp 32428 6229979136 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 19:49:44,164 basehttp 32428 6162673664 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 19:49:44,165 basehttp 32428 6263631872 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 19:49:44,165 basehttp 32428 6196326400 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 19:49:44,166 basehttp 32428 6213152768 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 19:49:44,168 basehttp 32428 6179500032 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 19:49:44,169 basehttp 32428 6162673664 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 19:49:44,169 basehttp 32428 6229979136 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 19:49:44,169 basehttp 32428 6213152768 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 19:49:44,169 basehttp 32428 6263631872 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 19:49:44,170 basehttp 32428 6196326400 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 19:49:44,172 basehttp 32428 6196326400 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 19:49:44,173 basehttp 32428 6162673664 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 19:49:44,173 basehttp 32428 6263631872 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 19:49:44,173 basehttp 32428 6229979136 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 19:49:44,174 basehttp 32428 6213152768 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 19:49:44,176 basehttp 32428 6179500032 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 19:49:44,260 log 32428 6179500032 Not Found: /favicon.ico +WARNING 2025-09-04 19:49:44,260 basehttp 32428 6179500032 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 19:50:44,925 autoreload 33880 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 19:50:47,401 basehttp 33880 6126891008 "GET /en/blood-bank/donors/ HTTP/1.1" 200 84449 +WARNING 2025-09-04 19:50:47,419 log 33880 6126891008 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:50:47,419 basehttp 33880 6126891008 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:50:47,509 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:51:47,522 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:52:13,587 basehttp 33880 6126891008 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83923 +WARNING 2025-09-04 19:52:13,600 log 33880 6126891008 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:52:13,601 basehttp 33880 6126891008 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:52:13,646 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:52:14,649 basehttp 33880 6126891008 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83923 +WARNING 2025-09-04 19:52:14,660 log 33880 6126891008 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:52:14,660 basehttp 33880 6126891008 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:52:14,711 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:52:41,711 basehttp 33880 6126891008 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83923 +WARNING 2025-09-04 19:52:41,726 log 33880 6126891008 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:52:41,726 basehttp 33880 6126891008 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:52:41,786 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:53:08,654 basehttp 33880 6126891008 "GET /en/blood-bank/ HTTP/1.1" 200 48551 +WARNING 2025-09-04 19:53:08,671 log 33880 6126891008 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:53:08,671 basehttp 33880 6126891008 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:54:08,742 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:54:52,097 basehttp 33880 6126891008 "GET /en/blood-bank/donors HTTP/1.1" 301 0 +INFO 2025-09-04 19:54:52,116 basehttp 33880 6143717376 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83923 +WARNING 2025-09-04 19:54:52,132 log 33880 6143717376 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:54:52,132 basehttp 33880 6143717376 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:54:52,197 basehttp 33880 6143717376 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:54:55,355 basehttp 33880 6143717376 "GET /en/blood-bank/donors/34/update/ HTTP/1.1" 200 30114 +WARNING 2025-09-04 19:54:55,374 log 33880 6143717376 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:54:55,374 basehttp 33880 6143717376 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:54:55,419 basehttp 33880 6143717376 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 19:54:57,427 log 33880 6143717376 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:54:57,427 basehttp 33880 6143717376 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 19:54:57,436 log 33880 6143717376 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:54:57,436 basehttp 33880 6143717376 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 19:54:57,917 log 33880 6143717376 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:54:57,918 basehttp 33880 6143717376 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 19:54:57,929 log 33880 6143717376 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 19:54:57,930 basehttp 33880 6143717376 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 19:55:08,743 basehttp 33880 6143717376 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:56:08,751 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:57:08,754 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:58:08,747 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 19:59:08,754 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 20:00:08,761 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 20:01:08,765 basehttp 33880 6126891008 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:29:29,508 autoreload 46041 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 22:29:32,586 basehttp 46041 6201176064 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:29:50,180 basehttp 46041 6201176064 "GET /en/blood-bank/ HTTP/1.1" 200 48551 +INFO 2025-09-04 22:29:50,196 basehttp 46041 6251655168 "GET /static/css/custom.css HTTP/1.1" 200 2063 +WARNING 2025-09-04 22:29:50,203 log 46041 6201176064 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:29:50,204 basehttp 46041 6201176064 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:29:50,205 basehttp 46041 6218002432 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 22:29:50,206 basehttp 46041 6251655168 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 22:29:50,212 basehttp 46041 6285307904 "GET /static/plugins/chart.js/dist/chart.js HTTP/1.1" 200 403805 +INFO 2025-09-04 22:29:50,213 basehttp 46041 6234828800 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:29:50,215 basehttp 46041 6268481536 "GET /static/plugins/apexcharts/dist/apexcharts.min.js HTTP/1.1" 200 574941 +INFO 2025-09-04 22:29:50,216 basehttp 46041 6201176064 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:29:50,218 basehttp 46041 6251655168 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 22:29:50,226 basehttp 46041 6218002432 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:29:50,471 basehttp 46041 6218002432 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:29:50,508 basehttp 46041 6218002432 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:29:50,508 basehttp 46041 6268481536 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:29:50,509 basehttp 46041 6234828800 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:29:50,509 basehttp 46041 6251655168 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:29:50,510 basehttp 46041 6201176064 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:29:50,511 basehttp 46041 6285307904 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:29:50,514 basehttp 46041 6201176064 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:29:50,514 basehttp 46041 6285307904 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:29:50,515 basehttp 46041 6234828800 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:29:50,518 basehttp 46041 6268481536 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:29:50,519 basehttp 46041 6285307904 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:29:50,520 basehttp 46041 6201176064 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:29:50,521 basehttp 46041 6234828800 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:29:50,521 basehttp 46041 6268481536 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:29:50,523 basehttp 46041 6218002432 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:29:50,525 basehttp 46041 6285307904 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:29:50,526 basehttp 46041 6201176064 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:29:50,526 basehttp 46041 6251655168 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:29:50,526 basehttp 46041 6234828800 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:29:50,527 basehttp 46041 6268481536 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:29:50,528 basehttp 46041 6218002432 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:29:50,529 basehttp 46041 6201176064 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:29:50,529 basehttp 46041 6234828800 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:29:50,529 basehttp 46041 6285307904 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +WARNING 2025-09-04 22:29:50,658 log 46041 6234828800 Not Found: /favicon.ico +WARNING 2025-09-04 22:29:50,659 basehttp 46041 6234828800 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:30:50,532 basehttp 46041 6234828800 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:31:50,523 basehttp 46041 6234828800 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:32:50,528 basehttp 46041 6234828800 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:33:33,685 basehttp 46041 6234828800 "GET /en/blood-bank/ HTTP/1.1" 200 48165 +INFO 2025-09-04 22:33:33,697 basehttp 46041 6201176064 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 22:33:33,697 basehttp 46041 6268481536 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-04 22:33:33,697 basehttp 46041 6218002432 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-04 22:33:33,701 basehttp 46041 6201176064 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:33:33,702 basehttp 46041 6251655168 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 22:33:33,706 basehttp 46041 6218002432 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 22:33:33,708 basehttp 46041 6234828800 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 22:33:33,709 basehttp 46041 6251655168 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-04 22:33:33,714 basehttp 46041 6251655168 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +INFO 2025-09-04 22:33:33,714 basehttp 46041 6201176064 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-04 22:33:33,716 basehttp 46041 6218002432 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +WARNING 2025-09-04 22:33:33,719 log 46041 6234828800 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:33:33,720 basehttp 46041 6234828800 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:33:33,720 basehttp 46041 6285307904 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:33:33,721 basehttp 46041 6268481536 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:33:33,847 basehttp 46041 6268481536 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:33:33,867 basehttp 46041 6268481536 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:33:33,869 basehttp 46041 6234828800 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:33:33,869 basehttp 46041 6201176064 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:33:33,871 basehttp 46041 6218002432 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:33:33,872 basehttp 46041 6285307904 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:33:33,873 basehttp 46041 6218002432 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:33:33,873 basehttp 46041 6234828800 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:33:33,874 basehttp 46041 6251655168 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:33:33,876 basehttp 46041 6285307904 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:33:33,876 basehttp 46041 6218002432 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:33:33,878 basehttp 46041 6234828800 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:33:33,878 basehttp 46041 6285307904 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:33:33,879 basehttp 46041 6201176064 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:33:33,879 basehttp 46041 6251655168 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:33:33,880 basehttp 46041 6268481536 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:33:33,881 basehttp 46041 6285307904 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:33:33,881 basehttp 46041 6251655168 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:33:33,882 basehttp 46041 6201176064 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:33:33,883 basehttp 46041 6234828800 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:33:33,885 basehttp 46041 6268481536 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:33:33,886 basehttp 46041 6285307904 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:33:33,887 basehttp 46041 6201176064 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 22:33:33,887 basehttp 46041 6251655168 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:33:33,889 basehttp 46041 6218002432 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 22:33:34,140 log 46041 6218002432 Not Found: /favicon.ico +WARNING 2025-09-04 22:33:34,140 basehttp 46041 6218002432 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:33:42,132 basehttp 46041 6218002432 "GET /en/blood-bank/ HTTP/1.1" 200 48165 +INFO 2025-09-04 22:33:42,143 basehttp 46041 6268481536 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-04 22:33:42,143 basehttp 46041 6285307904 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-04 22:33:42,144 basehttp 46041 6251655168 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 22:33:42,147 basehttp 46041 6234828800 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 22:33:42,151 basehttp 46041 6251655168 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:33:42,155 basehttp 46041 6218002432 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +WARNING 2025-09-04 22:33:42,157 log 46041 6268481536 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:33:42,157 basehttp 46041 6268481536 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:33:42,159 basehttp 46041 6218002432 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-04 22:33:42,160 basehttp 46041 6234828800 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 22:33:42,161 basehttp 46041 6251655168 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-04 22:33:42,162 basehttp 46041 6218002432 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +INFO 2025-09-04 22:33:42,163 basehttp 46041 6268481536 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +INFO 2025-09-04 22:33:42,168 basehttp 46041 6201176064 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:33:42,169 basehttp 46041 6285307904 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:33:42,299 basehttp 46041 6285307904 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:33:42,302 basehttp 46041 6201176064 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:33:42,302 basehttp 46041 6218002432 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:33:42,303 basehttp 46041 6251655168 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:33:42,304 basehttp 46041 6268481536 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:33:42,305 basehttp 46041 6201176064 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:33:42,305 basehttp 46041 6234828800 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:33:42,306 basehttp 46041 6218002432 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:33:42,307 basehttp 46041 6251655168 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:33:42,308 basehttp 46041 6268481536 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:33:42,308 basehttp 46041 6201176064 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:33:42,308 basehttp 46041 6234828800 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:33:42,309 basehttp 46041 6218002432 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:33:42,310 basehttp 46041 6285307904 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:33:42,310 basehttp 46041 6251655168 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:33:42,310 basehttp 46041 6201176064 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:33:42,311 basehttp 46041 6268481536 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:33:42,312 basehttp 46041 6234828800 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:33:42,312 basehttp 46041 6218002432 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:33:42,313 basehttp 46041 6285307904 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:33:42,313 basehttp 46041 6201176064 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:33:42,314 basehttp 46041 6251655168 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:33:42,314 basehttp 46041 6268481536 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 22:33:42,317 basehttp 46041 6285307904 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:33:42,331 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 22:33:42,418 log 46041 6285307904 Not Found: /favicon.ico +WARNING 2025-09-04 22:33:42,418 basehttp 46041 6285307904 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:34:42,334 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:34:48,954 basehttp 46041 6285307904 "GET /en/blood-bank/donors/create/ HTTP/1.1" 200 29437 +WARNING 2025-09-04 22:34:48,969 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:34:48,969 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:34:49,031 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:34:58,469 basehttp 46041 6285307904 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83484 +WARNING 2025-09-04 22:34:58,486 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:34:58,486 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:34:58,534 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:35:12,008 basehttp 46041 6285307904 "GET /en/blood-bank/ HTTP/1.1" 200 48165 +WARNING 2025-09-04 22:35:12,026 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:35:12,026 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:35:12,075 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:35:26,223 basehttp 46041 6285307904 "GET /en/blood-bank/requests/38/ HTTP/1.1" 200 28390 +WARNING 2025-09-04 22:35:26,244 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:35:26,244 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:35:26,285 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 22:35:29,381 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:35:29,381 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 22:35:29,391 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:35:29,392 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 22:35:29,856 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:35:29,856 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 22:35:29,866 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:35:29,866 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:35:46,328 basehttp 46041 6285307904 "GET /en/inventory/ HTTP/1.1" 200 49812 +WARNING 2025-09-04 22:35:46,342 log 46041 6285307904 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:35:46,343 basehttp 46041 6285307904 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:35:46,366 basehttp 46041 6251655168 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-04 22:35:46,367 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:35:46,371 basehttp 46041 6268481536 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:36:16,376 basehttp 46041 6268481536 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:36:46,387 basehttp 46041 6268481536 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:36:46,387 basehttp 46041 6285307904 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:37:16,383 basehttp 46041 6201176064 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:37:46,388 basehttp 46041 6201176064 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:37:46,392 basehttp 46041 6218002432 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:38:16,383 basehttp 46041 6218002432 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:38:46,375 basehttp 46041 6218002432 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:38:46,377 basehttp 46041 6201176064 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:39:16,388 basehttp 46041 6201176064 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:39:46,395 basehttp 46041 6201176064 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:39:46,396 basehttp 46041 6218002432 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:40:17,259 basehttp 46041 6218002432 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:40:47,330 basehttp 46041 6218002432 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:40:48,242 basehttp 46041 6218002432 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:40:52,614 basehttp 46041 6218002432 "GET /en/inventory/ HTTP/1.1" 200 49847 +INFO 2025-09-04 22:40:52,623 basehttp 46041 6218002432 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +WARNING 2025-09-04 22:40:52,640 log 46041 6218002432 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:40:52,640 basehttp 46041 6218002432 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:40:52,647 basehttp 46041 6218002432 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +INFO 2025-09-04 22:40:52,689 basehttp 46041 6218002432 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:40:52,690 basehttp 46041 6201176064 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:40:54,000 basehttp 46041 6201176064 "GET /en/inventory/ HTTP/1.1" 200 49847 +WARNING 2025-09-04 22:40:54,022 log 46041 6201176064 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:40:54,022 basehttp 46041 6201176064 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:40:54,074 basehttp 46041 6201176064 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:40:54,075 basehttp 46041 6218002432 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:40:54,854 basehttp 46041 6218002432 "GET /en/inventory/ HTTP/1.1" 200 49847 +WARNING 2025-09-04 22:40:54,872 log 46041 6218002432 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:40:54,872 basehttp 46041 6218002432 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:40:54,915 basehttp 46041 6218002432 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:40:54,918 basehttp 46041 6201176064 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:41:03,301 basehttp 46041 6201176064 "GET /en/inventory/ HTTP/1.1" 200 49847 +INFO 2025-09-04 22:41:03,310 basehttp 46041 6234828800 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 22:41:03,312 basehttp 46041 6268481536 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:41:03,316 basehttp 46041 6251655168 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 22:41:03,320 basehttp 46041 6268481536 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 22:41:03,321 basehttp 46041 6201176064 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 22:41:03,324 basehttp 46041 6285307904 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +WARNING 2025-09-04 22:41:03,326 log 46041 6251655168 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:41:03,327 basehttp 46041 6251655168 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:41:03,331 basehttp 46041 6218002432 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:41:03,332 basehttp 46041 6234828800 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:41:03,547 basehttp 46041 6234828800 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +INFO 2025-09-04 22:41:03,548 basehttp 46041 6268481536 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:41:03,549 basehttp 46041 6251655168 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:41:03,549 basehttp 46041 6201176064 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:41:03,550 basehttp 46041 6285307904 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:41:03,553 basehttp 46041 6218002432 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:41:03,554 basehttp 46041 6251655168 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-04 22:41:03,554 basehttp 46041 6285307904 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:41:03,555 basehttp 46041 6234828800 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:41:03,556 basehttp 46041 6218002432 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:41:03,556 basehttp 46041 6201176064 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:41:03,559 basehttp 46041 6268481536 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:41:03,559 basehttp 46041 6201176064 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:41:03,560 basehttp 46041 6234828800 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:41:03,560 basehttp 46041 6251655168 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:41:03,560 basehttp 46041 6218002432 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:41:03,561 basehttp 46041 6285307904 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:41:03,563 basehttp 46041 6251655168 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:41:03,563 basehttp 46041 6201176064 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:41:03,564 basehttp 46041 6218002432 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:41:03,565 basehttp 46041 6268481536 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:41:03,566 basehttp 46041 6285307904 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:41:03,567 basehttp 46041 6234828800 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:41:03,568 basehttp 46041 6218002432 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:41:03,568 basehttp 46041 6201176064 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 22:41:03,570 basehttp 46041 6251655168 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:41:03,579 basehttp 46041 6285307904 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:41:03,579 basehttp 46041 6268481536 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +WARNING 2025-09-04 22:41:03,894 log 46041 6268481536 Not Found: /favicon.ico +WARNING 2025-09-04 22:41:03,897 basehttp 46041 6268481536 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:41:33,579 basehttp 46041 6268481536 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:42:03,582 basehttp 46041 6268481536 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:42:03,584 basehttp 46041 6285307904 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:42:33,615 basehttp 46041 6285307904 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:42:33,683 autoreload 46041 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:42:34,076 autoreload 51925 8466948288 Watching for file changes with StatReloader +ERROR 2025-09-04 22:42:36,221 log 51925 6138097664 Internal Server Error: /en/inventory/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 105, in view + return self.dispatch(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/mixins.py", line 73, in dispatch + return super().dispatch(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 144, in dispatch + return handler(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 228, in get + context = self.get_context_data(**kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py", line 92, in get_context_data + context['recent_stock_movements'] = InventoryStock.objects.filter( + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/manager.py", line 87, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1493, in filter + return self._filter_or_exclude(False, args, kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1511, in _filter_or_exclude + clone._filter_or_exclude_inplace(negate, args, kwargs) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1518, in _filter_or_exclude_inplace + self._query.add_q(Q(*args, **kwargs)) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1646, in add_q + clause, _ = self._add_q(q_object, can_reuse) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1678, in _add_q + child_clause, needed_inner = self.build_filter( + ^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1526, in build_filter + lookups, parts, reffed_expression = self.solve_lookup_type(arg, summarize) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1333, in solve_lookup_type + _, field, _, lookup_parts = self.names_to_path(lookup_splitted, self.get_meta()) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1805, in names_to_path + raise FieldError( +django.core.exceptions.FieldError: Cannot resolve keyword 'tenant' into field. Choices are: created_at, expiration_date, id, inventory_item, inventory_item_id, location, location_id, lot_number, notes, purchase_order, purchase_order_id, quality_status, quantity_available, quantity_on_hand, quantity_reserved, received_date, serial_number, stock_id, supplier, supplier_id, total_cost, unit_cost, updated_at +ERROR 2025-09-04 22:42:36,224 basehttp 51925 6138097664 "GET /en/inventory/ HTTP/1.1" 500 140149 +WARNING 2025-09-04 22:42:36,248 log 51925 6138097664 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:42:36,249 basehttp 51925 6138097664 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:43:12,874 autoreload 51925 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:43:13,253 autoreload 52239 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 22:43:15,005 basehttp 52239 6168719360 "GET /en/inventory/ HTTP/1.1" 200 58768 +WARNING 2025-09-04 22:43:15,023 log 52239 6168719360 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:43:15,023 basehttp 52239 6168719360 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:43:15,100 basehttp 52239 6168719360 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:43:15,103 basehttp 52239 6325039104 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:43:34,952 basehttp 52239 6325039104 "GET /en/inventory/stock/ HTTP/1.1" 200 134026 +INFO 2025-09-04 22:43:34,970 basehttp 52239 6358691840 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-04 22:43:34,971 basehttp 52239 6168719360 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-04 22:43:34,972 basehttp 52239 6325039104 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-04 22:43:34,972 basehttp 52239 6392344576 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +INFO 2025-09-04 22:43:34,973 basehttp 52239 6375518208 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +INFO 2025-09-04 22:43:34,973 basehttp 52239 6341865472 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-04 22:43:34,973 basehttp 52239 6325039104 "GET /static/plugins/dropzone/src/options.js HTTP/1.1" 200 23721 +WARNING 2025-09-04 22:43:34,976 log 52239 6358691840 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:43:34,976 basehttp 52239 6358691840 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:43:35,019 basehttp 52239 6358691840 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 22:43:39,986 log 52239 6358691840 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:43:39,986 basehttp 52239 6358691840 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 22:43:40,010 log 52239 6358691840 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:43:40,010 basehttp 52239 6358691840 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:43:42,737 basehttp 52239 6358691840 "GET /en/inventory/stock/?stock_status=low HTTP/1.1" 200 134026 +WARNING 2025-09-04 22:43:42,762 log 52239 6358691840 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:43:42,762 basehttp 52239 6358691840 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:43:42,780 basehttp 52239 6358691840 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 22:43:45,382 log 52239 6325039104 Not Found: /.well-known/appspecific/com.chrome.devtools.json +INFO 2025-09-04 22:43:45,382 basehttp 52239 6358691840 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +WARNING 2025-09-04 22:43:45,383 basehttp 52239 6325039104 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 22:43:45,401 log 52239 6325039104 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:43:45,401 basehttp 52239 6325039104 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:44:13,978 basehttp 52239 6325039104 "GET /en/inventory/ HTTP/1.1" 200 58768 +INFO 2025-09-04 22:44:13,990 basehttp 52239 6341865472 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 22:44:13,990 basehttp 52239 6392344576 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:44:13,993 basehttp 52239 6375518208 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 22:44:13,996 basehttp 52239 6341865472 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 22:44:14,002 basehttp 52239 6325039104 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 22:44:14,003 basehttp 52239 6168719360 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +WARNING 2025-09-04 22:44:14,009 log 52239 6375518208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:44:14,010 basehttp 52239 6375518208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:44:14,011 basehttp 52239 6358691840 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:44:14,011 basehttp 52239 6392344576 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:44:14,118 basehttp 52239 6392344576 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +INFO 2025-09-04 22:44:14,145 basehttp 52239 6392344576 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:44:14,146 basehttp 52239 6358691840 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:44:14,146 basehttp 52239 6325039104 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:44:14,146 basehttp 52239 6375518208 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:44:14,152 basehttp 52239 6168719360 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:44:14,154 basehttp 52239 6392344576 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:44:14,155 basehttp 52239 6358691840 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-04 22:44:14,159 basehttp 52239 6375518208 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:44:14,159 basehttp 52239 6341865472 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:44:14,159 basehttp 52239 6325039104 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:44:14,160 basehttp 52239 6392344576 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:44:14,160 basehttp 52239 6358691840 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:44:14,162 basehttp 52239 6168719360 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:44:14,164 basehttp 52239 6392344576 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:44:14,165 basehttp 52239 6358691840 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:44:14,165 basehttp 52239 6325039104 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:44:14,165 basehttp 52239 6341865472 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:44:14,167 basehttp 52239 6375518208 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:44:14,168 basehttp 52239 6358691840 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:44:14,168 basehttp 52239 6325039104 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:44:14,168 basehttp 52239 6168719360 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:44:14,169 basehttp 52239 6341865472 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:44:14,171 basehttp 52239 6375518208 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:44:14,171 basehttp 52239 6325039104 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 22:44:14,173 basehttp 52239 6392344576 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:44:14,182 basehttp 52239 6168719360 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:44:14,183 basehttp 52239 6341865472 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +WARNING 2025-09-04 22:44:14,289 log 52239 6341865472 Not Found: /favicon.ico +WARNING 2025-09-04 22:44:14,289 basehttp 52239 6341865472 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:44:44,191 basehttp 52239 6341865472 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:45:02,958 autoreload 52239 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:45:03,303 autoreload 53030 8466948288 Watching for file changes with StatReloader +ERROR 2025-09-04 22:45:04,051 log 53030 6122336256 Internal Server Error: /en/inventory/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 105, in view + return self.dispatch(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/mixins.py", line 73, in dispatch + return super().dispatch(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 144, in dispatch + return handler(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 228, in get + context = self.get_context_data(**kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py", line 55, in get_context_data + low_stock_items = InventoryStock.objects.filter( + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/manager.py", line 87, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1493, in filter + return self._filter_or_exclude(False, args, kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1511, in _filter_or_exclude + clone._filter_or_exclude_inplace(negate, args, kwargs) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1518, in _filter_or_exclude_inplace + self._query.add_q(Q(*args, **kwargs)) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1646, in add_q + clause, _ = self._add_q(q_object, can_reuse) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1678, in _add_q + child_clause, needed_inner = self.build_filter( + ^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1535, in build_filter + value = self.resolve_lookup_value(value, can_reuse, allow_joins, summarize) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1300, in resolve_lookup_value + value = value.resolve_expression( + ^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/expressions.py", line 902, in resolve_expression + return query.resolve_ref(self.name, allow_joins, reuse, summarize) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 2049, in resolve_ref + join_info = self.setup_joins( + ^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1900, in setup_joins + path, final_field, targets, rest = self.names_to_path( + ^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1805, in names_to_path + raise FieldError( +django.core.exceptions.FieldError: Cannot resolve keyword 'min_stock_level' into field. Choices are: created_at, expiration_date, id, inventory_item, inventory_item_id, location, location_id, lot_number, notes, purchase_order, purchase_order_id, quality_status, quantity_available, quantity_on_hand, quantity_reserved, received_date, serial_number, stock_id, supplier, supplier_id, total_cost, unit_cost, updated_at +ERROR 2025-09-04 22:45:04,053 basehttp 53030 6122336256 "GET /en/inventory/ HTTP/1.1" 500 155860 +WARNING 2025-09-04 22:45:04,075 log 53030 6122336256 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:45:04,075 basehttp 53030 6122336256 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:46:04,856 autoreload 53030 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:46:05,185 autoreload 53519 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 22:46:07,204 basehttp 53519 6167277568 "GET /en/inventory/ HTTP/1.1" 200 58772 +WARNING 2025-09-04 22:46:07,229 log 53519 6167277568 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:46:07,229 basehttp 53519 6167277568 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:46:07,296 basehttp 53519 6167277568 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:46:07,299 basehttp 53519 6325039104 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:46:25,737 basehttp 53519 6325039104 "GET /en/inventory/ HTTP/1.1" 200 58772 +INFO 2025-09-04 22:46:25,752 basehttp 53519 6375518208 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:46:25,752 basehttp 53519 6341865472 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 22:46:25,755 basehttp 53519 6358691840 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 22:46:25,760 basehttp 53519 6325039104 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 22:46:25,764 basehttp 53519 6392344576 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +INFO 2025-09-04 22:46:25,764 basehttp 53519 6358691840 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +WARNING 2025-09-04 22:46:25,766 log 53519 6341865472 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:46:25,767 basehttp 53519 6341865472 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:46:25,770 basehttp 53519 6167277568 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:46:25,770 basehttp 53519 6375518208 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:46:25,896 basehttp 53519 6375518208 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +INFO 2025-09-04 22:46:25,905 basehttp 53519 6375518208 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:46:25,907 basehttp 53519 6341865472 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:46:25,907 basehttp 53519 6167277568 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:46:25,909 basehttp 53519 6392344576 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:46:25,909 basehttp 53519 6358691840 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:46:25,909 basehttp 53519 6341865472 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-04 22:46:25,911 basehttp 53519 6325039104 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:46:25,912 basehttp 53519 6167277568 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:46:25,913 basehttp 53519 6341865472 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:46:25,913 basehttp 53519 6358691840 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:46:25,913 basehttp 53519 6392344576 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:46:25,915 basehttp 53519 6325039104 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:46:25,915 basehttp 53519 6167277568 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:46:25,917 basehttp 53519 6358691840 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:46:25,918 basehttp 53519 6375518208 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:46:25,925 basehttp 53519 6392344576 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:46:25,930 basehttp 53519 6341865472 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:46:25,931 basehttp 53519 6325039104 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:46:25,931 basehttp 53519 6167277568 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:46:25,933 basehttp 53519 6358691840 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:46:25,934 basehttp 53519 6358691840 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:46:25,935 basehttp 53519 6167277568 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:46:25,936 basehttp 53519 6375518208 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:46:25,937 basehttp 53519 6358691840 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 22:46:25,939 basehttp 53519 6392344576 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:46:25,944 basehttp 53519 6341865472 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:46:25,945 basehttp 53519 6325039104 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +WARNING 2025-09-04 22:46:26,051 log 53519 6325039104 Not Found: /favicon.ico +WARNING 2025-09-04 22:46:26,051 basehttp 53519 6325039104 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:46:34,812 basehttp 53519 6325039104 "GET /en/inventory/stock/?stock_status=low HTTP/1.1" 200 134026 +INFO 2025-09-04 22:46:34,829 basehttp 53519 6341865472 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-04 22:46:34,829 basehttp 53519 6392344576 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-04 22:46:34,829 basehttp 53519 6375518208 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-04 22:46:34,830 basehttp 53519 6358691840 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +WARNING 2025-09-04 22:46:34,834 log 53519 6325039104 Not Found: /.well-known/appspecific/com.chrome.devtools.json +INFO 2025-09-04 22:46:34,835 basehttp 53519 6392344576 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +INFO 2025-09-04 22:46:34,835 basehttp 53519 6358691840 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +INFO 2025-09-04 22:46:34,835 basehttp 53519 6375518208 "GET /static/plugins/dropzone/src/options.js HTTP/1.1" 200 23721 +WARNING 2025-09-04 22:46:34,835 basehttp 53519 6325039104 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:46:34,910 basehttp 53519 6375518208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 22:46:36,694 log 53519 6375518208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:46:36,695 basehttp 53519 6375518208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 22:46:36,713 log 53519 6375518208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:46:36,714 basehttp 53519 6375518208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:46:41,432 basehttp 53519 6375518208 "GET /en/inventory/stock/ HTTP/1.1" 200 134026 +WARNING 2025-09-04 22:46:41,450 log 53519 6375518208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:46:41,450 basehttp 53519 6375518208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:46:41,487 basehttp 53519 6375518208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +WARNING 2025-09-04 22:46:44,223 log 53519 6375518208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:46:44,223 basehttp 53519 6375518208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 22:46:44,240 log 53519 6375518208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:46:44,241 basehttp 53519 6375518208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:46:55,952 basehttp 53519 6375518208 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:47:25,955 basehttp 53519 6375518208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:47:25,959 basehttp 53519 6358691840 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:47:45,275 autoreload 53519 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:47:45,601 autoreload 54327 8466948288 Watching for file changes with StatReloader +ERROR 2025-09-04 22:47:47,470 log 54327 6130348032 Internal Server Error: /en/inventory/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 105, in view + return self.dispatch(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/contrib/auth/mixins.py", line 73, in dispatch + return super().dispatch(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 144, in dispatch + return handler(request, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/views/generic/base.py", line 228, in get + context = self.get_context_data(**kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py", line 90, in get_context_data + ).select_related('item', 'location').order_by('quantity')[:10] + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1722, in order_by + obj.query.add_ordering(*field_names) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 2291, in add_ordering + self.names_to_path(item.split(LOOKUP_SEP), self.model._meta) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/query.py", line 1805, in names_to_path + raise FieldError( +django.core.exceptions.FieldError: Cannot resolve keyword 'quantity' into field. Choices are: created_at, expiration_date, id, inventory_item, inventory_item_id, location, location_id, lot_number, notes, purchase_order, purchase_order_id, quality_status, quantity_available, quantity_on_hand, quantity_reserved, received_date, serial_number, stock_id, supplier, supplier_id, total_cost, unit_cost, updated_at +ERROR 2025-09-04 22:47:47,473 basehttp 54327 6130348032 "GET /en/inventory/ HTTP/1.1" 500 104421 +WARNING 2025-09-04 22:47:47,489 log 54327 6130348032 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:47:47,489 basehttp 54327 6130348032 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:48:05,503 autoreload 54327 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:48:05,878 autoreload 54483 8466948288 Watching for file changes with StatReloader +ERROR 2025-09-04 22:48:06,435 log 54483 6135377920 Internal Server Error: /en/inventory/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 220, in _get_response + response = response.render() + ^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/response.py", line 114, in render + self.content = self.rendered_content + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/response.py", line 92, in rendered_content + return template.render(context, self._request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/backends/django.py", line 107, in render + return self.template.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 171, in render + return self._render(context) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 163, in _render + return self.nodelist.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 1016, in render + return SafeString("".join([node.render_annotated(context) for node in self])) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/loader_tags.py", line 159, in render + return compiled_parent._render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 163, in _render + return self.nodelist.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 1016, in render + return SafeString("".join([node.render_annotated(context) for node in self])) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/loader_tags.py", line 65, in render + result = block.nodelist.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 1016, in render + return SafeString("".join([node.render_annotated(context) for node in self])) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/defaulttags.py", line 326, in render + if match: + ^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 398, in __bool__ + self._fetch_all() + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 1949, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/query.py", line 91, in __iter__ + results = compiler.execute_sql( + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/compiler.py", line 1610, in execute_sql + sql, params = self.as_sql() + ^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/compiler.py", line 766, in as_sql + extra_select, order_by, group_by = self.pre_sql_setup( + ^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/compiler.py", line 85, in pre_sql_setup + self.setup_query(with_col_aliases=with_col_aliases) + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/compiler.py", line 74, in setup_query + self.select, self.klass_info, self.annotation_col_map = self.get_select( + ^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/compiler.py", line 299, in get_select + related_klass_infos = self.get_related_selections(select, select_mask) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/db/models/sql/compiler.py", line 1396, in get_related_selections + raise FieldError( +django.core.exceptions.FieldError: Invalid field name(s) given in select_related: 'item'. Choices are: inventory_item, location, supplier, purchase_order +ERROR 2025-09-04 22:48:06,437 basehttp 54483 6135377920 "GET /en/inventory/ HTTP/1.1" 500 223527 +WARNING 2025-09-04 22:48:06,452 log 54483 6135377920 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:48:06,452 basehttp 54483 6135377920 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:48:48,549 autoreload 54483 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:48:48,919 autoreload 54804 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 22:48:49,479 basehttp 54804 6196768768 "GET /en/inventory/ HTTP/1.1" 200 58772 +WARNING 2025-09-04 22:48:49,496 log 54804 6196768768 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:48:49,496 basehttp 54804 6196768768 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:48:49,550 basehttp 54804 6196768768 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:48:49,552 basehttp 54804 6213595136 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:48:56,277 basehttp 54804 6213595136 "GET /en/inventory/ HTTP/1.1" 200 58772 +INFO 2025-09-04 22:48:56,294 basehttp 54804 6280900608 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:48:56,295 basehttp 54804 6247247872 "GET /static/css/custom.css HTTP/1.1" 200 2063 +WARNING 2025-09-04 22:48:56,298 log 54804 6213595136 Not Found: /.well-known/appspecific/com.chrome.devtools.json +INFO 2025-09-04 22:48:56,299 basehttp 54804 6264074240 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +WARNING 2025-09-04 22:48:56,299 basehttp 54804 6213595136 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:48:56,303 basehttp 54804 6196768768 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 22:48:56,304 basehttp 54804 6264074240 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 22:48:56,305 basehttp 54804 6280900608 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +INFO 2025-09-04 22:48:56,308 basehttp 54804 6230421504 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:48:56,309 basehttp 54804 6247247872 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:48:56,431 basehttp 54804 6247247872 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:48:56,452 basehttp 54804 6247247872 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:48:56,455 basehttp 54804 6230421504 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:48:56,455 basehttp 54804 6280900608 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:48:56,455 basehttp 54804 6196768768 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:48:56,456 basehttp 54804 6264074240 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:48:56,459 basehttp 54804 6230421504 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-04 22:48:56,459 basehttp 54804 6280900608 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:48:56,460 basehttp 54804 6264074240 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:48:56,460 basehttp 54804 6213595136 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:48:56,462 basehttp 54804 6280900608 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:48:56,462 basehttp 54804 6230421504 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:48:56,463 basehttp 54804 6264074240 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:48:56,464 basehttp 54804 6264074240 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:48:56,464 basehttp 54804 6247247872 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:48:56,465 basehttp 54804 6230421504 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:48:56,466 basehttp 54804 6247247872 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:48:56,466 basehttp 54804 6264074240 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:48:56,467 basehttp 54804 6230421504 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:48:56,469 basehttp 54804 6247247872 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:48:56,470 basehttp 54804 6264074240 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:48:56,473 basehttp 54804 6247247872 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:48:56,473 basehttp 54804 6230421504 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:48:56,474 basehttp 54804 6264074240 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:48:56,476 basehttp 54804 6247247872 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 22:48:56,478 basehttp 54804 6213595136 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:48:56,480 basehttp 54804 6280900608 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:48:56,482 basehttp 54804 6196768768 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +WARNING 2025-09-04 22:48:56,596 log 54804 6196768768 Not Found: /favicon.ico +WARNING 2025-09-04 22:48:56,597 basehttp 54804 6196768768 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:49:26,480 basehttp 54804 6196768768 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:49:56,480 basehttp 54804 6196768768 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:49:56,483 basehttp 54804 6280900608 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:50:26,488 basehttp 54804 6280900608 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:50:56,479 basehttp 54804 6280900608 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:50:56,484 basehttp 54804 6196768768 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:51:26,485 basehttp 54804 6196768768 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:51:56,499 basehttp 54804 6196768768 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3836 +INFO 2025-09-04 22:51:56,501 basehttp 54804 6280900608 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:52:26,497 basehttp 54804 6280900608 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:52:56,482 basehttp 54804 6280900608 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:52:56,491 basehttp 54804 6196768768 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:53:20,533 autoreload 54804 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 22:53:20,891 autoreload 56811 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 22:53:26,502 basehttp 56811 6129758208 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:53:41,912 basehttp 56811 6129758208 "GET /en/inventory/ HTTP/1.1" 200 58772 +INFO 2025-09-04 22:53:41,932 basehttp 56811 6163410944 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 22:53:41,934 basehttp 56811 13052751872 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 22:53:41,937 basehttp 56811 13035925504 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +WARNING 2025-09-04 22:53:41,939 log 56811 13069578240 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:53:41,940 basehttp 56811 13069578240 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:53:41,942 basehttp 56811 13035925504 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 22:53:41,943 basehttp 56811 6163410944 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +INFO 2025-09-04 22:53:41,943 basehttp 56811 6129758208 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-04 22:53:41,946 basehttp 56811 6146584576 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 22:53:41,947 basehttp 56811 13052751872 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 22:53:42,158 basehttp 56811 13052751872 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +INFO 2025-09-04 22:53:42,169 basehttp 56811 13052751872 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 22:53:42,170 basehttp 56811 6163410944 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 22:53:42,171 basehttp 56811 13035925504 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 22:53:42,172 basehttp 56811 6146584576 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 22:53:42,172 basehttp 56811 6129758208 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 22:53:42,172 basehttp 56811 6163410944 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-04 22:53:42,174 basehttp 56811 13069578240 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 22:53:42,175 basehttp 56811 6146584576 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 22:53:42,176 basehttp 56811 13035925504 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 22:53:42,176 basehttp 56811 6163410944 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 22:53:42,177 basehttp 56811 6129758208 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 22:53:42,177 basehttp 56811 13069578240 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 22:53:42,178 basehttp 56811 6146584576 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 22:53:42,179 basehttp 56811 13035925504 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 22:53:42,179 basehttp 56811 13052751872 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 22:53:42,180 basehttp 56811 6163410944 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 22:53:42,180 basehttp 56811 6129758208 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 22:53:42,182 basehttp 56811 6146584576 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 22:53:42,183 basehttp 56811 13069578240 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 22:53:42,184 basehttp 56811 13035925504 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 22:53:42,185 basehttp 56811 6163410944 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 22:53:42,190 basehttp 56811 6146584576 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 22:53:42,195 basehttp 56811 13052751872 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 22:53:42,198 basehttp 56811 6129758208 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 22:53:42,200 basehttp 56811 13035925504 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-04 22:53:42,211 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:53:42,211 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-04 22:53:42,290 log 56811 6163410944 Not Found: /favicon.ico +WARNING 2025-09-04 22:53:42,291 basehttp 56811 6163410944 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 22:53:44,529 basehttp 56811 6163410944 "GET /en/inventory/ HTTP/1.1" 200 58772 +WARNING 2025-09-04 22:53:44,546 log 56811 6163410944 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 22:53:44,546 basehttp 56811 6163410944 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 22:53:44,630 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:53:44,631 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:54:14,632 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:54:44,625 basehttp 56811 13069578240 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:54:44,629 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:55:14,644 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:55:44,654 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:55:44,655 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:56:14,648 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:56:44,634 basehttp 56811 13069578240 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:56:44,638 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:57:14,650 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:57:44,662 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:57:44,662 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:58:14,655 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:58:44,637 basehttp 56811 13069578240 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:58:44,647 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:59:14,658 basehttp 56811 13069578240 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 22:59:44,645 basehttp 56811 13069578240 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 22:59:44,654 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:00:14,662 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:00:44,639 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:00:44,658 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:01:14,671 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:01:44,651 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:01:44,665 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:02:14,674 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:02:44,645 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:02:44,666 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:03:14,680 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:03:44,655 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:03:44,673 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:04:14,682 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:04:44,596 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:04:44,617 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:05:14,619 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:05:44,600 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:05:44,620 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:06:14,630 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:06:44,598 basehttp 56811 6163410944 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:06:44,625 basehttp 56811 6163410944 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:07:14,636 basehttp 56811 6129758208 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:07:44,600 basehttp 56811 6129758208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:07:44,626 basehttp 56811 6129758208 "GET /en/inventory/htmx/stats/ HTTP/1.1" 200 6394 +INFO 2025-09-04 23:08:12,234 basehttp 56811 6129758208 "GET /en/inventory/ HTTP/1.1" 200 58741 +WARNING 2025-09-04 23:08:12,247 log 56811 6129758208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:08:12,247 basehttp 56811 6129758208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:08:12,295 basehttp 56811 6129758208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:08:40,121 basehttp 56811 6129758208 "GET /en/inventory/ HTTP/1.1" 200 58741 +WARNING 2025-09-04 23:08:40,133 log 56811 6129758208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:08:40,134 basehttp 56811 6129758208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:08:40,184 basehttp 56811 6129758208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:09:40,187 basehttp 56811 6129758208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:10:11,822 basehttp 56811 6129758208 "GET /en/inventory/ HTTP/1.1" 200 58779 +WARNING 2025-09-04 23:10:11,836 log 56811 6129758208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:10:11,836 basehttp 56811 6129758208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:10:11,890 basehttp 56811 6129758208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:10:43,219 basehttp 56811 6129758208 "GET /en/inventory/ HTTP/1.1" 200 58781 +WARNING 2025-09-04 23:10:43,235 log 56811 6129758208 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:10:43,235 basehttp 56811 6129758208 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:10:43,281 basehttp 56811 6129758208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:11:43,281 basehttp 56811 6129758208 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:12:10,646 autoreload 56811 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 23:12:11,119 autoreload 65616 8466948288 Watching for file changes with StatReloader +WARNING 2025-09-04 23:12:12,100 log 65616 6122287104 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:12:12,100 basehttp 65616 6122287104 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 23:12:12,113 log 65616 6122287104 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:12:12,113 basehttp 65616 6122287104 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:12:13,309 basehttp 65616 6122287104 "GET /en/inventory/ HTTP/1.1" 200 58781 +WARNING 2025-09-04 23:12:13,325 log 65616 6122287104 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:12:13,325 basehttp 65616 6122287104 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:12:13,371 basehttp 65616 6122287104 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:12:18,325 basehttp 65616 6122287104 "GET /en/inventory/ HTTP/1.1" 200 58781 +WARNING 2025-09-04 23:12:18,339 log 65616 6122287104 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:12:18,340 basehttp 65616 6122287104 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:12:18,385 basehttp 65616 6122287104 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:12:37,380 autoreload 65616 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 23:12:37,722 autoreload 65777 8466948288 Watching for file changes with StatReloader +INFO 2025-09-04 23:12:38,885 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 58740 +WARNING 2025-09-04 23:12:38,905 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:12:38,905 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:12:38,954 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:13:02,350 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 58718 +WARNING 2025-09-04 23:13:02,365 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:13:02,365 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:13:02,423 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-04 23:13:33,685 log 65777 6205075456 Not Found: /en/blood_bank/ +WARNING 2025-09-04 23:13:33,685 basehttp 65777 6205075456 "GET /en/blood_bank/ HTTP/1.1" 404 30121 +WARNING 2025-09-04 23:13:33,708 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:13:33,708 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:13:49,602 basehttp 65777 6205075456 "GET /en/blood-bank/donors HTTP/1.1" 301 0 +INFO 2025-09-04 23:13:49,624 basehttp 65777 6221901824 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83484 +INFO 2025-09-04 23:13:49,669 basehttp 65777 6205075456 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-04 23:13:49,671 basehttp 65777 6272380928 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-04 23:13:49,671 basehttp 65777 6289207296 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +INFO 2025-09-04 23:13:49,671 basehttp 65777 6238728192 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-04 23:13:49,672 basehttp 65777 6205075456 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +WARNING 2025-09-04 23:13:49,673 log 65777 6221901824 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:13:49,673 basehttp 65777 6221901824 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:13:49,674 basehttp 65777 6255554560 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-04 23:13:49,708 basehttp 65777 6255554560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:13:57,071 basehttp 65777 6255554560 "GET /en/blood-bank HTTP/1.1" 301 0 +INFO 2025-09-04 23:13:57,087 basehttp 65777 6221901824 "GET /en/blood-bank/ HTTP/1.1" 200 48165 +WARNING 2025-09-04 23:13:57,104 log 65777 6221901824 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:13:57,104 basehttp 65777 6221901824 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:13:57,127 basehttp 65777 6221901824 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:14:57,128 basehttp 65777 6221901824 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:15:57,140 basehttp 65777 6221901824 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:16:57,131 basehttp 65777 6221901824 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:17:51,799 basehttp 65777 6221901824 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-04 23:17:51,801 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:17:51,801 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 23:17:51,811 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:17:51,811 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 23:17:52,581 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:17:52,581 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 23:17:53,434 log 65777 6221901824 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:17:53,434 basehttp 65777 6221901824 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:17:53,436 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-04 23:17:53,452 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:17:53,452 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:17:54,778 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 58468 +WARNING 2025-09-04 23:17:54,791 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:17:54,791 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:17:54,840 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:18:54,844 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:19:54,810 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:20:09,411 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 59003 +WARNING 2025-09-04 23:20:09,425 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:20:09,425 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:20:09,475 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:21:09,466 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:22:09,478 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:22:51,708 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 54197 +WARNING 2025-09-04 23:22:51,724 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:22:51,724 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:22:51,777 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:23:25,058 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 54118 +WARNING 2025-09-04 23:23:25,071 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:23:25,072 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:23:25,119 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:24:02,755 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 54140 +WARNING 2025-09-04 23:24:02,769 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:24:02,769 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:24:02,817 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:25:03,114 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:26:53,253 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:27:58,095 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:29:57,356 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:30:58,348 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:31:59,350 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:33:38,705 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:40:12,279 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:42:12,281 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:43:12,286 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +ERROR 2025-09-04 23:43:36,527 log 65777 6205075456 Internal Server Error: /en/inventory/ +Traceback (most recent call last): + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/core/handlers/base.py", line 220, in _get_response + response = response.render() + ^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/response.py", line 114, in render + self.content = self.rendered_content + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/response.py", line 92, in rendered_content + return template.render(context, self._request) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/backends/django.py", line 107, in render + return self.template.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 171, in render + return self._render(context) + ^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 163, in _render + return self.nodelist.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 1016, in render + return SafeString("".join([node.render_annotated(context) for node in self])) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/loader_tags.py", line 159, in render + return compiled_parent._render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 163, in _render + return self.nodelist.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 1016, in render + return SafeString("".join([node.render_annotated(context) for node in self])) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/loader_tags.py", line 65, in render + result = block.nodelist.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 1016, in render + return SafeString("".join([node.render_annotated(context) for node in self])) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/defaulttags.py", line 327, in render + return nodelist.render(context) + ^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 1016, in render + return SafeString("".join([node.render_annotated(context) for node in self])) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/defaulttags.py", line 243, in render + nodelist.append(node.render_annotated(context)) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/base.py", line 977, in render_annotated + return self.render(context) + ^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/template/defaulttags.py", line 480, in render + url = reverse(view_name, args=args, kwargs=kwargs, current_app=current_app) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/urls/base.py", line 98, in reverse + resolved_url = resolver._reverse_with_prefix(view, prefix, *args, **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/Users/marwanalwali/manus_project/hospital_management_system_v4/.venv/lib/python3.12/site-packages/django/urls/resolvers.py", line 831, in _reverse_with_prefix + raise NoReverseMatch(msg) +django.urls.exceptions.NoReverseMatch: Reverse for 'purchase_order_detail' with arguments '(UUID('a2d7f72a-e7f3-47a1-b2ed-54fcd91dbca9'),)' not found. 1 pattern(s) tried: ['en/inventory/orders/(?P[0-9]+)/\\Z'] +ERROR 2025-09-04 23:43:36,529 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 500 234201 +WARNING 2025-09-04 23:43:36,548 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:43:36,548 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:45:17,348 basehttp 65777 6205075456 "GET /en/inventory/ HTTP/1.1" 200 52990 +WARNING 2025-09-04 23:45:17,362 log 65777 6205075456 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:45:17,362 basehttp 65777 6205075456 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:45:17,421 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:46:17,425 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:47:17,414 basehttp 65777 6205075456 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:47:35,677 autoreload 65777 8466948288 /Users/marwanalwali/manus_project/hospital_management_system_v4/inventory/views.py changed, reloading. +INFO 2025-09-04 23:47:36,132 autoreload 77728 8466948288 Watching for file changes with StatReloader +WARNING 2025-09-04 23:47:37,115 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:47:37,115 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-04 23:47:37,138 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:47:37,138 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:47:38,692 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 52609 +WARNING 2025-09-04 23:47:38,710 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:47:38,710 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:47:38,754 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:47:39,543 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 52609 +WARNING 2025-09-04 23:47:39,560 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:47:39,561 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:47:39,607 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:47:40,566 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 52609 +WARNING 2025-09-04 23:47:40,581 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:47:40,581 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:47:40,630 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:48:19,156 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 52790 +WARNING 2025-09-04 23:48:19,169 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:48:19,169 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:48:19,226 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:49:19,231 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:49:30,048 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 52818 +WARNING 2025-09-04 23:49:30,061 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:49:30,061 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:49:30,118 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:50:13,845 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 52988 +WARNING 2025-09-04 23:50:13,859 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:50:13,860 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:50:13,915 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:50:28,809 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 53115 +WARNING 2025-09-04 23:50:28,824 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:50:28,824 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:50:28,867 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:50:52,324 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 53124 +WARNING 2025-09-04 23:50:52,336 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:50:52,336 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:50:52,379 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:51:26,585 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 53284 +WARNING 2025-09-04 23:51:26,599 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:51:26,599 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:51:26,641 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:52:06,800 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 53764 +WARNING 2025-09-04 23:52:06,819 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:52:06,819 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:52:06,863 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:52:38,441 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 53744 +WARNING 2025-09-04 23:52:38,456 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:52:38,457 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:52:38,507 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:53:38,521 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:54:11,720 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 53772 +WARNING 2025-09-04 23:54:11,734 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:54:11,734 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:54:11,782 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:55:11,876 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:56:11,868 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:56:22,175 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 53780 +WARNING 2025-09-04 23:56:22,188 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:56:22,188 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:56:22,240 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:56:55,248 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 54404 +WARNING 2025-09-04 23:56:55,264 log 77728 6165622784 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-04 23:56:55,265 basehttp 77728 6165622784 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:56:55,313 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:57:55,324 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:58:49,839 basehttp 77728 6165622784 "GET /en/inventory/ HTTP/1.1" 200 54417 +INFO 2025-09-04 23:58:49,851 basehttp 77728 6341865472 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-04 23:58:49,854 basehttp 77728 6375518208 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-04 23:58:49,856 basehttp 77728 6358691840 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-04 23:58:49,861 basehttp 77728 6165622784 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +WARNING 2025-09-04 23:58:49,863 log 77728 6341865472 Not Found: /.well-known/appspecific/com.chrome.devtools.json +INFO 2025-09-04 23:58:49,864 basehttp 77728 6392344576 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +WARNING 2025-09-04 23:58:49,864 basehttp 77728 6341865472 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-04 23:58:49,868 basehttp 77728 6358691840 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-04 23:58:49,871 basehttp 77728 6325039104 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-04 23:58:49,873 basehttp 77728 6375518208 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-04 23:58:50,122 basehttp 77728 6375518208 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +INFO 2025-09-04 23:58:50,130 basehttp 77728 6375518208 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-04 23:58:50,132 basehttp 77728 6341865472 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-04 23:58:50,133 basehttp 77728 6358691840 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-04 23:58:50,134 basehttp 77728 6341865472 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-04 23:58:50,134 basehttp 77728 6325039104 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-04 23:58:50,134 basehttp 77728 6392344576 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-04 23:58:50,136 basehttp 77728 6358691840 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-04 23:58:50,137 basehttp 77728 6165622784 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-04 23:58:50,138 basehttp 77728 6392344576 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-04 23:58:50,139 basehttp 77728 6325039104 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-04 23:58:50,139 basehttp 77728 6358691840 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-04 23:58:50,140 basehttp 77728 6341865472 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-04 23:58:50,140 basehttp 77728 6165622784 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-04 23:58:50,140 basehttp 77728 6392344576 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-04 23:58:50,143 basehttp 77728 6358691840 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-04 23:58:50,144 basehttp 77728 6165622784 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-04 23:58:50,144 basehttp 77728 6341865472 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-04 23:58:50,145 basehttp 77728 6375518208 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-04 23:58:50,146 basehttp 77728 6375518208 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-04 23:58:50,146 basehttp 77728 6165622784 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-04 23:58:50,146 basehttp 77728 6325039104 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-04 23:58:50,147 basehttp 77728 6392344576 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-04 23:58:50,147 basehttp 77728 6341865472 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-04 23:58:50,147 basehttp 77728 6375518208 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-04 23:58:50,157 basehttp 77728 6341865472 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-04 23:58:50,162 basehttp 77728 6358691840 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +WARNING 2025-09-04 23:58:50,405 log 77728 6358691840 Not Found: /favicon.ico +WARNING 2025-09-04 23:58:50,405 basehttp 77728 6358691840 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-04 23:59:50,363 basehttp 77728 6358691840 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:00:51,362 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:01:52,368 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:02:53,362 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:03:54,365 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:04:55,375 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:05:57,359 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:07:12,361 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:09:12,356 basehttp 77728 6165622784 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:24:46,165 autoreload 8123 8747049152 Watching for file changes with StatReloader +INFO 2025-09-05 00:24:49,227 basehttp 8123 6134722560 "GET /en/inventory/ HTTP/1.1" 200 53300 +INFO 2025-09-05 00:24:49,240 basehttp 8123 6134722560 "GET /static/plugins/apexcharts/dist/apexcharts.min.js HTTP/1.1" 200 574941 +INFO 2025-09-05 00:24:49,277 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-05 00:24:49,294 log 8123 6134722560 Not Found: /favicon.ico +WARNING 2025-09-05 00:24:49,294 basehttp 8123 6134722560 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-05 00:25:49,293 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:27:11,960 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:28:12,954 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:29:13,954 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:33:54,404 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:34:54,525 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:35:30,802 basehttp 8123 6134722560 "GET /en/inventory/ HTTP/1.1" 200 52552 +INFO 2025-09-05 00:35:30,863 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:36:21,838 basehttp 8123 6134722560 "GET /en/inventory/ HTTP/1.1" 200 52583 +INFO 2025-09-05 00:36:21,884 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:36:31,271 basehttp 8123 6134722560 "GET / HTTP/1.1" 302 0 +INFO 2025-09-05 00:36:31,302 basehttp 8123 6151548928 "GET /en/ HTTP/1.1" 200 49367 +INFO 2025-09-05 00:36:31,351 basehttp 8123 6151548928 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:36:31,354 basehttp 8123 6168375296 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:36:31,354 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:37:00,273 basehttp 8123 6134722560 "GET /en/ HTTP/1.1" 200 49367 +INFO 2025-09-05 00:37:00,328 basehttp 8123 6151548928 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:37:00,330 basehttp 8123 6134722560 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:37:00,330 basehttp 8123 6168375296 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +WARNING 2025-09-05 00:37:11,561 log 8123 6168375296 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:37:11,561 basehttp 8123 6168375296 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:38:00,340 basehttp 8123 6168375296 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:38:00,340 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:39:00,334 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:39:00,334 basehttp 8123 6168375296 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:40:00,346 basehttp 8123 6168375296 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:40:00,346 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:41:00,337 basehttp 8123 6168375296 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:41:00,338 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:41:44,641 basehttp 8123 6168375296 "GET /en/ HTTP/1.1" 200 49490 +WARNING 2025-09-05 00:41:44,655 basehttp 8123 6134722560 "GET /static/js/toastr.min.js HTTP/1.1" 404 1975 +INFO 2025-09-05 00:41:44,656 basehttp 8123 6168375296 "GET /static/plugins/jquery/dist/jquery.min.js HTTP/1.1" 200 87533 +WARNING 2025-09-05 00:41:44,661 log 8123 6151548928 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:41:44,661 basehttp 8123 6151548928 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:41:44,742 basehttp 8123 6151548928 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:41:44,746 basehttp 8123 6168375296 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:41:44,747 basehttp 8123 6134722560 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:41:48,685 basehttp 8123 6134722560 "GET /en/ HTTP/1.1" 200 49490 +INFO 2025-09-05 00:41:48,692 basehttp 8123 6151548928 "GET /static/css/custom.css HTTP/1.1" 200 2063 +WARNING 2025-09-05 00:41:48,695 basehttp 8123 13186969600 "GET /static/js/toastr.min.js HTTP/1.1" 404 1975 +INFO 2025-09-05 00:41:48,696 basehttp 8123 13203795968 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-05 00:41:48,696 basehttp 8123 13170143232 "GET /static/plugins/jquery/dist/jquery.min.js HTTP/1.1" 200 87533 +WARNING 2025-09-05 00:41:48,700 log 8123 6151548928 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:41:48,700 basehttp 8123 6151548928 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:41:48,701 basehttp 8123 13203795968 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-05 00:41:48,702 basehttp 8123 6134722560 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-05 00:41:48,706 basehttp 8123 6168375296 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-05 00:41:48,707 basehttp 8123 13170143232 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-05 00:41:48,710 basehttp 8123 13186969600 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-05 00:41:48,838 basehttp 8123 13186969600 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-05 00:41:48,853 basehttp 8123 13170143232 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-05 00:41:48,854 basehttp 8123 13186969600 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-05 00:41:48,854 basehttp 8123 6168375296 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-05 00:41:48,854 basehttp 8123 13203795968 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-05 00:41:48,856 basehttp 8123 6134722560 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-05 00:41:48,858 basehttp 8123 13203795968 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-05 00:41:48,858 basehttp 8123 6151548928 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-05 00:41:48,860 basehttp 8123 13186969600 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-05 00:41:48,860 basehttp 8123 6134722560 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-05 00:41:48,861 basehttp 8123 6168375296 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-05 00:41:48,862 basehttp 8123 6151548928 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-05 00:41:48,863 basehttp 8123 13203795968 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-05 00:41:48,863 basehttp 8123 6151548928 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-05 00:41:48,864 basehttp 8123 13203795968 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-05 00:41:48,865 basehttp 8123 6151548928 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-05 00:41:48,869 basehttp 8123 13203795968 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-05 00:41:48,870 basehttp 8123 13170143232 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-05 00:41:48,872 basehttp 8123 6151548928 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-05 00:41:48,876 basehttp 8123 13203795968 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-05 00:41:48,877 basehttp 8123 6151548928 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-05 00:41:48,878 basehttp 8123 13170143232 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-05 00:41:48,879 basehttp 8123 13203795968 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-05 00:41:48,879 basehttp 8123 6151548928 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-05 00:41:48,887 basehttp 8123 6168375296 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:41:48,888 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:41:48,889 basehttp 8123 13186969600 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-05 00:41:49,188 log 8123 13186969600 Not Found: /favicon.ico +WARNING 2025-09-05 00:41:49,188 basehttp 8123 13186969600 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-05 00:42:19,749 basehttp 8123 13186969600 "GET /en/ HTTP/1.1" 200 49434 +INFO 2025-09-05 00:42:19,757 basehttp 8123 13170143232 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-05 00:42:19,761 basehttp 8123 13203795968 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-05 00:42:19,763 basehttp 8123 6168375296 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-05 00:42:19,772 basehttp 8123 6168375296 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +WARNING 2025-09-05 00:42:19,776 log 8123 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +INFO 2025-09-05 00:42:19,777 basehttp 8123 13186969600 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +WARNING 2025-09-05 00:42:19,777 basehttp 8123 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:42:19,780 basehttp 8123 6134722560 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-05 00:42:19,781 basehttp 8123 13203795968 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-05 00:42:19,783 basehttp 8123 6151548928 "GET /static/plugins/jquery/dist/jquery.js HTTP/1.1" 200 285314 +INFO 2025-09-05 00:42:19,922 basehttp 8123 6151548928 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-05 00:42:19,941 basehttp 8123 6151548928 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-05 00:42:19,944 basehttp 8123 13186969600 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-05 00:42:19,944 basehttp 8123 13203795968 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-05 00:42:19,945 basehttp 8123 6168375296 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-05 00:42:19,946 basehttp 8123 13170143232 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-05 00:42:19,947 basehttp 8123 6134722560 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-05 00:42:19,949 basehttp 8123 13186969600 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-05 00:42:19,950 basehttp 8123 6168375296 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-05 00:42:19,950 basehttp 8123 13203795968 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-05 00:42:19,952 basehttp 8123 13203795968 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-05 00:42:19,952 basehttp 8123 6151548928 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-05 00:42:19,952 basehttp 8123 6168375296 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-05 00:42:19,953 basehttp 8123 13203795968 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-05 00:42:19,954 basehttp 8123 13203795968 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-05 00:42:19,955 basehttp 8123 6168375296 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-05 00:42:19,955 basehttp 8123 6151548928 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-05 00:42:19,956 basehttp 8123 6151548928 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-05 00:42:19,956 basehttp 8123 6168375296 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-05 00:42:19,956 basehttp 8123 13203795968 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-05 00:42:19,958 basehttp 8123 6168375296 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-05 00:42:19,958 basehttp 8123 6151548928 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-05 00:42:19,958 basehttp 8123 13203795968 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-05 00:42:19,959 basehttp 8123 6168375296 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-05 00:42:19,966 basehttp 8123 13170143232 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:42:19,970 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:42:19,971 basehttp 8123 13186969600 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +WARNING 2025-09-05 00:42:20,083 log 8123 13186969600 Not Found: /favicon.ico +WARNING 2025-09-05 00:42:20,083 basehttp 8123 13186969600 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-05 00:42:34,691 basehttp 8123 13186969600 "GET /en/ HTTP/1.1" 200 49434 +WARNING 2025-09-05 00:42:34,707 log 8123 13186969600 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:42:34,707 basehttp 8123 13186969600 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:42:34,809 basehttp 8123 13186969600 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:42:34,809 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:42:34,809 basehttp 8123 13170143232 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:43:13,497 basehttp 8123 13186969600 "GET /en/ HTTP/1.1" 200 49421 +INFO 2025-09-05 00:43:13,508 basehttp 8123 13186969600 "GET /static/js/jquery.min.js HTTP/1.1" 200 87532 +WARNING 2025-09-05 00:43:13,514 log 8123 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:43:13,514 basehttp 8123 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:43:13,576 basehttp 8123 6134722560 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:43:13,577 basehttp 8123 13186969600 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:43:13,578 basehttp 8123 13170143232 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:43:16,901 basehttp 8123 13170143232 "GET /en/ HTTP/1.1" 200 49421 +INFO 2025-09-05 00:43:16,910 basehttp 8123 13170143232 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-05 00:43:16,914 basehttp 8123 6168375296 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-05 00:43:16,915 basehttp 8123 13203795968 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-05 00:43:16,915 basehttp 8123 13170143232 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-05 00:43:16,917 basehttp 8123 13203795968 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-09-05 00:43:16,917 basehttp 8123 6151548928 "GET /static/js/jquery.min.js HTTP/1.1" 200 87532 +WARNING 2025-09-05 00:43:16,926 log 8123 6134722560 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:43:16,927 basehttp 8123 6134722560 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:43:16,928 basehttp 8123 13186969600 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-05 00:43:16,929 basehttp 8123 6168375296 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-05 00:43:17,071 basehttp 8123 6168375296 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-05 00:43:17,089 basehttp 8123 6134722560 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-05 00:43:17,090 basehttp 8123 6168375296 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-05 00:43:17,091 basehttp 8123 13203795968 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-05 00:43:17,092 basehttp 8123 13186969600 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-05 00:43:17,092 basehttp 8123 6151548928 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-05 00:43:17,093 basehttp 8123 13203795968 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-05 00:43:17,094 basehttp 8123 13170143232 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-05 00:43:17,096 basehttp 8123 6134722560 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-05 00:43:17,097 basehttp 8123 6151548928 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-05 00:43:17,097 basehttp 8123 13186969600 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-05 00:43:17,098 basehttp 8123 6151548928 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-05 00:43:17,099 basehttp 8123 6168375296 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-05 00:43:17,100 basehttp 8123 13186969600 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-05 00:43:17,100 basehttp 8123 6151548928 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-05 00:43:17,101 basehttp 8123 6168375296 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-05 00:43:17,101 basehttp 8123 13186969600 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-05 00:43:17,102 basehttp 8123 6168375296 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-05 00:43:17,102 basehttp 8123 13186969600 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-05 00:43:17,102 basehttp 8123 6151548928 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-05 00:43:17,104 basehttp 8123 6168375296 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-05 00:43:17,104 basehttp 8123 6151548928 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-05 00:43:17,105 basehttp 8123 13186969600 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-05 00:43:17,106 basehttp 8123 6168375296 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-05 00:43:17,117 basehttp 8123 13170143232 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:43:17,119 basehttp 8123 6134722560 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:43:17,120 basehttp 8123 13203795968 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +WARNING 2025-09-05 00:43:17,217 log 8123 13203795968 Not Found: /favicon.ico +WARNING 2025-09-05 00:43:17,217 basehttp 8123 13203795968 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-05 00:43:25,997 basehttp 8123 13203795968 "GET /en/ HTTP/1.1" 200 49461 +WARNING 2025-09-05 00:43:26,017 log 8123 13203795968 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:43:26,017 basehttp 8123 13203795968 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:43:26,418 basehttp 8123 13170143232 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:43:26,419 basehttp 8123 13203795968 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:43:26,420 basehttp 8123 6134722560 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:43:29,812 basehttp 8123 6134722560 "GET /en/ HTTP/1.1" 200 49461 +INFO 2025-09-05 00:43:29,818 basehttp 8123 6134722560 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-05 00:43:29,822 basehttp 8123 6168375296 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-05 00:43:29,824 basehttp 8123 13186969600 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-05 00:43:29,825 basehttp 8123 6151548928 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-05 00:43:29,829 basehttp 8123 6168375296 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +WARNING 2025-09-05 00:43:29,831 log 8123 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:43:29,831 basehttp 8123 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:43:29,836 basehttp 8123 13203795968 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-05 00:43:29,836 basehttp 8123 6134722560 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-05 00:43:29,977 basehttp 8123 13203795968 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-05 00:43:29,977 basehttp 8123 6168375296 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-05 00:43:29,978 basehttp 8123 6151548928 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-05 00:43:29,978 basehttp 8123 6134722560 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-05 00:43:29,978 basehttp 8123 13186969600 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-05 00:43:29,980 basehttp 8123 13170143232 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-05 00:43:29,985 basehttp 8123 6134722560 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-05 00:43:29,987 basehttp 8123 6134722560 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-05 00:43:29,987 basehttp 8123 13186969600 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-05 00:43:29,988 basehttp 8123 13170143232 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-05 00:43:29,988 basehttp 8123 13203795968 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-05 00:43:29,988 basehttp 8123 6151548928 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-05 00:43:29,993 basehttp 8123 13186969600 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-05 00:43:29,995 basehttp 8123 13170143232 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-05 00:43:29,996 basehttp 8123 6134722560 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-05 00:43:29,997 basehttp 8123 6168375296 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-05 00:43:30,001 basehttp 8123 6134722560 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-05 00:43:30,002 basehttp 8123 6151548928 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-05 00:43:30,003 basehttp 8123 6134722560 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-05 00:43:30,005 basehttp 8123 6151548928 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-05 00:43:30,006 basehttp 8123 6134722560 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-05 00:43:30,006 basehttp 8123 6151548928 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-05 00:43:30,007 basehttp 8123 6134722560 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-05 00:43:30,009 basehttp 8123 13203795968 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-05 00:43:30,016 basehttp 8123 13186969600 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:43:30,018 basehttp 8123 13170143232 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:43:30,018 basehttp 8123 6168375296 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +WARNING 2025-09-05 00:43:30,111 log 8123 6168375296 Not Found: /favicon.ico +WARNING 2025-09-05 00:43:30,112 basehttp 8123 6168375296 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-05 00:43:36,497 basehttp 8123 6168375296 "GET /en/inventory/ HTTP/1.1" 200 52677 +INFO 2025-09-05 00:43:36,515 basehttp 8123 13170143232 "GET /static/plugins/apexcharts/dist/apexcharts.min.js HTTP/1.1" 200 574941 +WARNING 2025-09-05 00:43:36,521 log 8123 6168375296 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:43:36,521 basehttp 8123 6168375296 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:43:36,543 basehttp 8123 6168375296 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-05 00:43:37,981 basehttp 8123 6168375296 "GET /en/inventory/ HTTP/1.1" 200 52677 +WARNING 2025-09-05 00:43:37,997 log 8123 6168375296 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:43:37,998 basehttp 8123 6168375296 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:43:38,062 basehttp 8123 6168375296 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:44:38,449 basehttp 8123 6168375296 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:45:38,452 basehttp 8123 6168375296 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:45:57,692 autoreload 15682 8747049152 Watching for file changes with StatReloader +INFO 2025-09-05 00:46:00,085 basehttp 15682 6133919744 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83869 +INFO 2025-09-05 00:46:00,100 basehttp 15682 6167572480 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-05 00:46:00,104 basehttp 15682 6150746112 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-05 00:46:00,104 basehttp 15682 6201225216 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-05 00:46:00,104 basehttp 15682 6167572480 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +WARNING 2025-09-05 00:46:00,105 log 15682 6133919744 Not Found: /.well-known/appspecific/com.chrome.devtools.json +INFO 2025-09-05 00:46:00,105 basehttp 15682 6218051584 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +WARNING 2025-09-05 00:46:00,105 basehttp 15682 6133919744 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:46:00,106 basehttp 15682 6184398848 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-05 00:46:03,760 basehttp 15682 6133919744 "GET / HTTP/1.1" 302 0 +INFO 2025-09-05 00:46:03,776 basehttp 15682 6150746112 "GET /en/ HTTP/1.1" 200 49752 +WARNING 2025-09-05 00:46:03,789 log 15682 6150746112 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:46:03,789 basehttp 15682 6150746112 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:46:03,849 basehttp 15682 6150746112 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:46:03,851 basehttp 15682 6167572480 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:46:03,852 basehttp 15682 6133919744 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:46:53,804 basehttp 15682 6133919744 "GET /en/ HTTP/1.1" 200 49752 +WARNING 2025-09-05 00:46:53,828 log 15682 6133919744 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:46:53,828 basehttp 15682 6133919744 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:46:53,882 basehttp 15682 6150746112 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:46:53,882 basehttp 15682 6167572480 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:46:53,882 basehttp 15682 6133919744 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:47:23,659 basehttp 15682 6133919744 "GET /en/ HTTP/1.1" 200 49752 +WARNING 2025-09-05 00:47:23,676 log 15682 6133919744 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:47:23,676 basehttp 15682 6133919744 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:47:23,724 basehttp 15682 6133919744 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:47:23,737 basehttp 15682 6150746112 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:47:23,738 basehttp 15682 6167572480 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:47:27,082 basehttp 15682 6167572480 "GET /en/ HTTP/1.1" 200 49752 +INFO 2025-09-05 00:47:27,091 basehttp 15682 13438578688 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-05 00:47:27,093 basehttp 15682 13472231424 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-05 00:47:27,095 basehttp 15682 13455405056 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-05 00:47:27,096 basehttp 15682 6167572480 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-05 00:47:27,099 basehttp 15682 13472231424 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +WARNING 2025-09-05 00:47:27,101 log 15682 6133919744 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:47:27,102 basehttp 15682 6133919744 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:47:27,104 basehttp 15682 6150746112 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-05 00:47:27,104 basehttp 15682 13438578688 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-05 00:47:27,339 basehttp 15682 13438578688 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-05 00:47:27,388 basehttp 15682 6150746112 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-05 00:47:27,388 basehttp 15682 13472231424 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-05 00:47:27,388 basehttp 15682 13438578688 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-05 00:47:27,388 basehttp 15682 6133919744 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-05 00:47:27,390 basehttp 15682 6167572480 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-05 00:47:27,390 basehttp 15682 13455405056 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-05 00:47:27,391 basehttp 15682 6167572480 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-05 00:47:27,392 basehttp 15682 13455405056 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-05 00:47:27,392 basehttp 15682 13472231424 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-05 00:47:27,393 basehttp 15682 13455405056 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-05 00:47:27,393 basehttp 15682 6167572480 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-05 00:47:27,393 basehttp 15682 13472231424 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-05 00:47:27,395 basehttp 15682 6167572480 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-05 00:47:27,395 basehttp 15682 13455405056 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-05 00:47:27,395 basehttp 15682 13472231424 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-05 00:47:27,397 basehttp 15682 13472231424 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-05 00:47:27,397 basehttp 15682 6167572480 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-05 00:47:27,397 basehttp 15682 13455405056 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-05 00:47:27,398 basehttp 15682 6167572480 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-05 00:47:27,399 basehttp 15682 13472231424 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-05 00:47:27,399 basehttp 15682 13455405056 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-05 00:47:27,400 basehttp 15682 6167572480 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-05 00:47:27,401 basehttp 15682 13472231424 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-05 00:47:27,444 basehttp 15682 6150746112 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:47:27,447 basehttp 15682 6133919744 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:47:27,454 basehttp 15682 13438578688 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +WARNING 2025-09-05 00:47:27,505 log 15682 13438578688 Not Found: /favicon.ico +WARNING 2025-09-05 00:47:27,505 basehttp 15682 13438578688 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-05 00:48:16,456 basehttp 15682 13438578688 "GET /en/ HTTP/1.1" 200 49752 +WARNING 2025-09-05 00:48:16,474 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:48:16,475 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:48:16,563 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:48:16,565 basehttp 15682 6150746112 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:48:16,565 basehttp 15682 6133919744 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:48:36,875 basehttp 15682 6133919744 "GET /en/ HTTP/1.1" 200 49752 +WARNING 2025-09-05 00:48:36,892 log 15682 6133919744 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:48:36,892 basehttp 15682 6133919744 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:48:36,954 basehttp 15682 13438578688 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:48:36,956 basehttp 15682 6133919744 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:48:36,959 basehttp 15682 6150746112 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:48:39,675 basehttp 15682 6150746112 "GET /en/ HTTP/1.1" 200 49752 +INFO 2025-09-05 00:48:39,687 basehttp 15682 13455405056 "GET /static/img/user/user-4.jpg HTTP/1.1" 200 5916 +INFO 2025-09-05 00:48:39,688 basehttp 15682 6167572480 "GET /static/js/htmx.min.js HTTP/1.1" 200 50917 +INFO 2025-09-05 00:48:39,689 basehttp 15682 13472231424 "GET /static/css/custom.css HTTP/1.1" 200 2063 +INFO 2025-09-05 00:48:39,693 basehttp 15682 6150746112 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-09-05 00:48:39,695 basehttp 15682 6133919744 "GET /static/css/default/app.min.css HTTP/1.1" 200 893480 +INFO 2025-09-05 00:48:39,695 basehttp 15682 6167572480 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +WARNING 2025-09-05 00:48:39,700 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:48:39,700 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:48:39,702 basehttp 15682 13455405056 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-09-05 00:48:39,826 basehttp 15682 13455405056 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 1957526 +INFO 2025-09-05 00:48:39,843 basehttp 15682 6167572480 "GET /static/img/theme/apple.jpg HTTP/1.1" 200 28822 +INFO 2025-09-05 00:48:39,844 basehttp 15682 13455405056 "GET /static/img/theme/default.jpg HTTP/1.1" 200 26964 +INFO 2025-09-05 00:48:39,844 basehttp 15682 6150746112 "GET /static/img/theme/facebook.jpg HTTP/1.1" 200 27881 +INFO 2025-09-05 00:48:39,844 basehttp 15682 6133919744 "GET /static/img/theme/material.jpg HTTP/1.1" 200 28774 +INFO 2025-09-05 00:48:39,844 basehttp 15682 13438578688 "GET /static/img/theme/transparent.jpg HTTP/1.1" 200 32747 +INFO 2025-09-05 00:48:39,845 basehttp 15682 13472231424 "GET /static/img/theme/google.jpg HTTP/1.1" 200 86013 +INFO 2025-09-05 00:48:39,850 basehttp 15682 6133919744 "GET /static/img/version/angular1x.jpg HTTP/1.1" 200 22869 +INFO 2025-09-05 00:48:39,850 basehttp 15682 13438578688 "GET /static/img/version/angular10x.jpg HTTP/1.1" 200 24580 +INFO 2025-09-05 00:48:39,852 basehttp 15682 13455405056 "GET /static/img/version/html.jpg HTTP/1.1" 200 17325 +INFO 2025-09-05 00:48:39,854 basehttp 15682 6150746112 "GET /static/img/version/ajax.jpg HTTP/1.1" 200 20223 +INFO 2025-09-05 00:48:39,855 basehttp 15682 13438578688 "GET /static/img/version/svelte.jpg HTTP/1.1" 200 25060 +INFO 2025-09-05 00:48:39,855 basehttp 15682 6167572480 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-09-05 00:48:39,856 basehttp 15682 13438578688 "GET /static/img/version/django.jpg HTTP/1.1" 200 20935 +INFO 2025-09-05 00:48:39,856 basehttp 15682 6150746112 "GET /static/img/version/laravel.jpg HTTP/1.1" 200 26040 +INFO 2025-09-05 00:48:39,857 basehttp 15682 6167572480 "GET /static/img/version/vuejs.jpg HTTP/1.1" 200 22518 +INFO 2025-09-05 00:48:39,857 basehttp 15682 13438578688 "GET /static/img/version/reactjs.jpg HTTP/1.1" 200 26850 +INFO 2025-09-05 00:48:39,858 basehttp 15682 6150746112 "GET /static/img/version/dotnet.jpg HTTP/1.1" 200 24791 +INFO 2025-09-05 00:48:39,858 basehttp 15682 6167572480 "GET /static/img/version/nextjs.jpg HTTP/1.1" 200 20152 +INFO 2025-09-05 00:48:39,859 basehttp 15682 13438578688 "GET /static/img/theme/one-page-parallax.jpg HTTP/1.1" 200 22474 +INFO 2025-09-05 00:48:39,860 basehttp 15682 6150746112 "GET /static/img/theme/e-commerce.jpg HTTP/1.1" 200 37734 +INFO 2025-09-05 00:48:39,860 basehttp 15682 6167572480 "GET /static/img/theme/blog.jpg HTTP/1.1" 200 32334 +INFO 2025-09-05 00:48:39,860 basehttp 15682 13438578688 "GET /static/img/theme/forum.jpg HTTP/1.1" 200 28744 +INFO 2025-09-05 00:48:39,861 basehttp 15682 6167572480 "GET /static/img/theme/corporate.jpg HTTP/1.1" 200 38911 +INFO 2025-09-05 00:48:39,870 basehttp 15682 13472231424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:48:39,872 basehttp 15682 6133919744 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:48:39,873 basehttp 15682 13455405056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +WARNING 2025-09-05 00:48:39,974 log 15682 13455405056 Not Found: /favicon.ico +WARNING 2025-09-05 00:48:39,974 basehttp 15682 13455405056 "GET /favicon.ico HTTP/1.1" 404 2557 +INFO 2025-09-05 00:49:17,198 basehttp 15682 13455405056 "GET /en/inventory/ HTTP/1.1" 200 54797 +INFO 2025-09-05 00:49:17,214 basehttp 15682 6133919744 "GET /static/plugins/chart.js/dist/chart.umd.js HTTP/1.1" 200 206279 +WARNING 2025-09-05 00:49:17,216 log 15682 13455405056 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:49:17,216 basehttp 15682 13455405056 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:49:17,256 basehttp 15682 13455405056 "GET /static/plugins/chart.js/dist/chart.umd.js.map HTTP/1.1" 200 958364 +INFO 2025-09-05 00:49:17,260 basehttp 15682 13455405056 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-09-05 00:49:17,289 basehttp 15682 13455405056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:49:49,137 basehttp 15682 13455405056 "GET /en/inventory/ HTTP/1.1" 200 54797 +WARNING 2025-09-05 00:49:49,151 log 15682 13455405056 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:49:49,151 basehttp 15682 13455405056 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:49:49,205 basehttp 15682 13455405056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-05 00:49:50,637 log 15682 13472231424 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:49:50,639 basehttp 15682 13472231424 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:49:50,639 basehttp 15682 13455405056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:49:50,639 basehttp 15682 6133919744 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:49:50,642 basehttp 15682 13472231424 - Broken pipe from ('127.0.0.1', 53046) +WARNING 2025-09-05 00:49:50,647 log 15682 6133919744 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:49:50,647 basehttp 15682 6133919744 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:49:51,265 basehttp 15682 6133919744 "GET /en/ HTTP/1.1" 200 49790 +WARNING 2025-09-05 00:49:51,283 log 15682 6133919744 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:49:51,284 basehttp 15682 6133919744 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:49:51,362 basehttp 15682 6133919744 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:49:51,362 basehttp 15682 13438578688 "GET /en/htmx/tenant-info/ HTTP/1.1" 200 1043 +INFO 2025-09-05 00:49:51,363 basehttp 15682 6167572480 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:49:51,365 basehttp 15682 13455405056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-05 00:50:21,357 basehttp 15682 13455405056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-05 00:50:51,378 basehttp 15682 13455405056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:50:51,382 basehttp 15682 6167572480 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-05 00:50:51,384 basehttp 15682 13438578688 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-05 00:51:19,337 basehttp 15682 13438578688 "GET /en/appointments/create/ HTTP/1.1" 200 36462 +WARNING 2025-09-05 00:51:19,354 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:51:19,354 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:51:19,400 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:51:20,742 basehttp 15682 13438578688 "GET /en/appointments/ HTTP/1.1" 200 45477 +WARNING 2025-09-05 00:51:20,756 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:51:20,756 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:51:20,797 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:51:20,813 basehttp 15682 6167572480 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:51:33,036 basehttp 15682 6167572480 "GET /en/appointments/calendar/ HTTP/1.1" 200 21934 +WARNING 2025-09-05 00:51:33,056 log 15682 6167572480 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:51:33,056 basehttp 15682 6167572480 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:51:33,114 basehttp 15682 6167572480 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:51:33,114 basehttp 15682 13455405056 "GET /en/appointments/slots/available/ HTTP/1.1" 200 450 +INFO 2025-09-05 00:51:33,147 basehttp 15682 13438578688 "GET /en/appointments/calendar/appointments/ HTTP/1.1" 200 48483 +WARNING 2025-09-05 00:51:39,273 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:51:39,273 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-05 00:51:39,289 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:51:39,289 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-05 00:51:41,095 log 15682 13438578688 Forbidden (CSRF token missing.): /en/appointments/check-in/1532/ +WARNING 2025-09-05 00:51:41,096 basehttp 15682 13438578688 "POST /en/appointments/check-in/1532/ HTTP/1.1" 403 2491 +INFO 2025-09-05 00:51:50,826 basehttp 15682 13438578688 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:52:20,821 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:52:20,841 basehttp 15682 13455405056 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:52:50,832 basehttp 15682 13455405056 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:53:20,823 basehttp 15682 13455405056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:53:20,844 basehttp 15682 13438578688 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:53:50,838 basehttp 15682 13438578688 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:54:20,825 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:54:20,844 basehttp 15682 13455405056 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:54:50,843 basehttp 15682 13455405056 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:55:20,824 basehttp 15682 13455405056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:55:20,846 basehttp 15682 13438578688 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:55:29,891 basehttp 15682 13438578688 "GET /en/appointments/detail/1547/ HTTP/1.1" 200 22826 +WARNING 2025-09-05 00:55:29,914 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:55:29,914 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:55:29,958 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-05 00:55:34,834 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:55:34,834 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-05 00:55:34,852 log 15682 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:55:34,853 basehttp 15682 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +WARNING 2025-09-05 00:55:38,305 log 15682 13438578688 Forbidden (CSRF token missing.): /en/appointments/check-in/1538/ +WARNING 2025-09-05 00:55:38,305 basehttp 15682 13438578688 "POST /en/appointments/check-in/1538/ HTTP/1.1" 403 2491 +INFO 2025-09-05 00:55:50,838 basehttp 15682 13438578688 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:56:20,826 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:56:20,848 basehttp 15682 13455405056 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:56:50,846 basehttp 15682 13455405056 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:57:08,314 basehttp 15682 13455405056 "GET /en/appointments/ HTTP/1.1" 200 45477 +WARNING 2025-09-05 00:57:08,335 log 15682 13455405056 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-05 00:57:08,335 basehttp 15682 13455405056 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-05 00:57:08,394 basehttp 15682 13455405056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:57:08,408 basehttp 15682 13438578688 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +WARNING 2025-09-05 00:57:10,272 log 15682 13438578688 Forbidden (CSRF token missing.): /en/appointments/check-in/1538/ +WARNING 2025-09-05 00:57:10,273 basehttp 15682 13438578688 "POST /en/appointments/check-in/1538/ HTTP/1.1" 403 2491 +INFO 2025-09-05 00:57:38,422 basehttp 15682 13438578688 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-05 00:58:08,410 basehttp 15682 13438578688 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-05 00:58:08,430 basehttp 15682 13455405056 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-06 00:15:57,362 autoreload 33886 8747049152 Watching for file changes with StatReloader +INFO 2025-09-06 00:16:00,175 basehttp 33886 6203437056 "GET /en/appointments/ HTTP/1.1" 200 45606 +INFO 2025-09-06 00:16:00,406 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:16:00,423 basehttp 33886 6220263424 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +INFO 2025-09-06 00:16:11,995 basehttp 33886 6220263424 "GET /en/appointments/detail/1583/ HTTP/1.1" 200 22825 +INFO 2025-09-06 00:16:12,077 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:17:12,100 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:17:14,924 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:17:14,947 basehttp 33886 6220263424 "GET /en/appointments/stats/ HTTP/1.1" 200 3132 +WARNING 2025-09-06 00:17:18,067 log 33886 6220263424 Forbidden (CSRF token missing.): /en/appointments/check-in/1606/ +WARNING 2025-09-06 00:17:18,067 basehttp 33886 6220263424 "POST /en/appointments/check-in/1606/ HTTP/1.1" 403 2491 +INFO 2025-09-06 00:18:01,941 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:18:31,961 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:18:31,963 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:18:31,966 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:19:01,947 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:19:40,432 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:19:40,437 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:19:40,438 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:20:11,416 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:21:24,090 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:21:24,090 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:21:25,077 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:22:03,096 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:22:25,106 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:22:25,107 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:23:03,095 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:23:26,103 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:23:26,105 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:24:03,097 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:28:37,258 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:28:37,262 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:29:13,245 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:30:13,266 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:30:13,271 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:30:13,272 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:31:13,255 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:31:13,256 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:31:13,258 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:36:37,610 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:36:37,611 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:36:37,611 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:39:06,917 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:43:03,482 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:43:03,482 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:43:03,483 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:51:20,883 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:51:20,885 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:51:20,885 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:52:20,861 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:52:20,864 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:53:20,851 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:53:20,853 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:54:20,875 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:54:20,875 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:54:20,876 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:55:20,864 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:55:20,864 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:55:20,866 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:56:20,832 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:57:20,866 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:57:20,869 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:57:20,871 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:58:20,876 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 00:58:20,877 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 00:58:20,879 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 00:59:20,851 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:00:20,867 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:00:20,868 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:00:20,869 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:01:20,877 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:01:20,881 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:01:20,882 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:02:20,868 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:02:20,869 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:02:20,869 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:03:20,854 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:04:20,874 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:04:20,876 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:04:20,879 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:05:20,875 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:05:20,877 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:05:20,880 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:06:20,853 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:07:20,679 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:07:20,679 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:07:20,681 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:08:20,664 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:08:20,667 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:08:20,668 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:09:20,683 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:09:20,684 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:09:20,687 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:10:20,651 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:11:20,677 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:11:20,677 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:11:20,679 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:12:20,667 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:12:20,669 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:13:20,670 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:13:20,671 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:13:20,674 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:14:20,648 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:15:20,648 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:15:20,652 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:15:20,654 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:16:20,668 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:16:20,668 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:16:20,671 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:17:20,633 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:18:20,656 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:18:20,657 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:18:20,660 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:19:20,662 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:19:20,665 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:19:20,666 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:20:20,641 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:21:20,653 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:21:20,653 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:21:20,656 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:22:20,646 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:22:20,649 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:22:20,650 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:23:20,589 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:23:20,594 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:24:20,593 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:24:20,595 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:25:20,606 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:25:20,607 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:25:20,608 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:26:20,589 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:26:20,591 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:27:20,586 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:27:20,589 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:28:20,599 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:28:20,600 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:28:20,602 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:29:20,565 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:29:20,565 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:30:20,571 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:30:20,575 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:31:20,584 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:31:20,588 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:31:20,590 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:32:20,611 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:32:20,612 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:32:20,614 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:33:20,566 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:34:20,597 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:34:20,597 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:34:20,598 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:35:20,562 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:36:20,562 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:36:20,562 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:36:20,565 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:37:20,574 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:37:20,576 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:37:20,578 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:38:20,532 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:39:20,568 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:39:20,568 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:39:20,571 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:40:20,541 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:40:20,543 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:41:20,542 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:41:20,546 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:42:20,555 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:42:20,556 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:42:20,559 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:43:20,505 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:44:20,546 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:44:20,546 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:44:20,548 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:45:20,541 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:45:20,542 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:45:20,544 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:46:20,517 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:47:20,542 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:47:20,542 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:47:20,545 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:48:20,540 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:48:20,542 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:48:20,545 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:49:20,503 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:50:20,536 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:50:20,538 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:50:20,540 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:51:20,534 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:51:20,534 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:51:20,536 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:52:20,508 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:54:06,987 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:54:06,988 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:54:06,988 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 01:59:15,778 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 01:59:15,779 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 01:59:15,781 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:00:43,279 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:00:43,281 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:00:43,281 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:08:05,910 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:09:21,762 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:09:21,763 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:09:21,766 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:17:02,864 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:17:02,867 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:20:51,787 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:20:51,788 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:23:26,125 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:23:26,125 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:23:26,128 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:25:29,508 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:35:33,631 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:35:33,632 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:35:33,635 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:36:33,633 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:36:33,633 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:36:33,635 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:37:33,605 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:38:33,628 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:38:33,629 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:38:33,632 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:39:33,609 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:39:33,613 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:40:33,615 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:40:33,618 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:41:33,616 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:41:33,617 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:42:33,632 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:42:33,632 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:42:33,634 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:43:33,633 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:43:33,633 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:43:33,634 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:44:33,606 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:45:33,634 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:45:33,635 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:45:33,638 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:46:33,615 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:46:33,616 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:47:33,618 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:47:33,620 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:48:33,610 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:48:33,614 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:49:33,604 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:49:33,608 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:49:33,608 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:50:33,614 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:50:33,617 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:51:33,714 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:51:33,719 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:52:33,704 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:52:33,704 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:52:33,706 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:53:33,719 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:53:33,721 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:54:33,710 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:54:33,712 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:55:33,737 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:55:33,739 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:55:33,741 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:56:33,733 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:56:33,734 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:56:33,737 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:57:33,692 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:58:33,734 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:58:33,736 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:58:33,738 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 02:59:33,736 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 02:59:33,736 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 02:59:33,739 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:00:33,736 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:00:33,736 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:00:33,740 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:01:33,716 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:02:33,714 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:02:33,715 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:02:33,717 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:03:33,740 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:03:33,740 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:03:33,741 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:04:33,738 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:04:33,738 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:04:33,740 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:05:33,710 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:06:33,820 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:06:33,820 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:06:33,823 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:07:33,804 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:07:33,805 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:08:33,808 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:08:33,809 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:09:33,822 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:09:33,823 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:09:33,826 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:10:33,812 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:10:33,812 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:11:33,811 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:11:33,814 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:12:33,826 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:12:33,829 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:12:33,832 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:13:33,813 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:13:33,816 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:14:33,813 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:14:33,817 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:15:33,838 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:15:33,839 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:15:33,843 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:16:33,819 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:16:33,820 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:17:33,832 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:17:33,834 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:17:33,836 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:18:33,834 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:18:33,835 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:18:33,837 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:19:33,812 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:20:33,834 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:20:33,836 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:20:33,838 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:21:33,839 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:21:33,841 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:21:33,842 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:22:33,693 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:23:33,720 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:23:33,720 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:23:33,723 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:24:33,677 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:25:33,719 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:25:33,720 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:25:33,723 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:26:33,722 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:26:33,723 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:26:33,726 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:27:33,707 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:27:33,709 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:28:33,690 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:28:33,693 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:29:33,719 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:29:33,721 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:29:33,723 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:30:33,705 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:30:33,707 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:31:33,707 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:31:33,708 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:31:33,710 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:32:33,710 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:32:33,712 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:33:33,708 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:33:33,712 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:34:33,719 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:34:33,720 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:34:33,723 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:35:33,706 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:35:33,709 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:36:33,720 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:36:33,723 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:36:33,725 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:47:29,884 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 03:47:29,888 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 03:52:53,085 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 03:52:53,087 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:02:48,659 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:02:48,661 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:02:48,663 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:03:48,687 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:03:48,688 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:03:48,688 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:04:48,633 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:05:48,653 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:05:48,656 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:05:48,659 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:06:48,630 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:06:48,635 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:07:48,636 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:07:48,640 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:08:48,630 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:08:48,634 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:09:48,654 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:09:48,656 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:09:48,657 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:10:48,628 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:10:48,628 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:11:48,658 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:11:48,659 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:11:48,661 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:12:48,646 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:12:48,648 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:13:48,661 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:13:48,663 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:13:48,665 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:14:48,632 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:15:48,654 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:15:48,655 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:15:48,658 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:16:48,646 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:16:48,647 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:16:48,649 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:17:48,538 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:18:48,557 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:18:48,558 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:18:48,561 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:19:48,516 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:20:48,552 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:20:48,554 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:20:48,556 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:21:48,545 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:21:48,546 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:21:48,548 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:22:48,521 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:22:48,522 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:23:48,539 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:23:48,542 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:24:48,551 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:24:48,552 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:24:48,554 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:25:48,523 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:26:48,524 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:26:48,524 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:26:48,526 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:27:48,537 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:27:48,538 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:27:48,538 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:28:48,563 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:28:48,563 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:28:48,567 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:29:48,511 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:30:48,523 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:30:48,523 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:30:48,524 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:31:48,531 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:31:48,533 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:32:48,457 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:32:48,462 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:33:48,483 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:33:48,484 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:33:48,487 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:34:48,469 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:34:48,471 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:35:48,459 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:35:48,461 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:36:48,448 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:36:48,454 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:36:48,466 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:37:48,466 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:37:48,468 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:38:48,450 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:38:48,456 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:39:48,471 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:39:48,476 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:39:48,476 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:40:48,450 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:40:48,453 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:41:48,450 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:41:48,456 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:42:48,834 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:42:48,854 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:43:48,455 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:43:48,458 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:44:48,463 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:44:48,467 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:44:48,468 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:45:48,458 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:45:48,459 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:46:48,450 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:46:48,453 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:47:48,466 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:47:48,466 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:47:48,467 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:48:48,446 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:48:48,448 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:49:48,437 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:49:48,443 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:50:48,447 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:50:48,453 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:50:48,455 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:51:48,443 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:51:48,445 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:52:48,436 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:52:48,437 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:53:48,430 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:53:48,431 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:53:48,433 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:54:48,430 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:54:48,433 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:55:48,440 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:55:48,443 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:55:48,444 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:56:48,440 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:56:48,442 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:57:48,428 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:57:48,430 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:58:48,447 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:58:48,447 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 04:58:48,449 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 04:59:48,431 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 04:59:48,434 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:00:48,427 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:00:48,427 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:00:48,428 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:01:48,430 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:01:48,432 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:03:27,502 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:03:27,505 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:07:50,490 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:07:50,493 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:07:50,494 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:10:42,129 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:10:42,130 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:10:42,131 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:11:42,101 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:12:42,125 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:12:42,126 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:12:42,127 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:13:42,125 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:13:42,125 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:13:42,126 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:14:42,098 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:15:42,123 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:15:42,124 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:15:42,125 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:16:42,107 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:16:42,109 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:17:42,106 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:17:42,108 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:18:42,112 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:18:42,116 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:18:42,117 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:19:42,092 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:19:42,093 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:20:42,092 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:20:42,095 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:21:42,101 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:21:42,103 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:21:42,105 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:22:42,086 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:22:42,088 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:23:42,101 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:23:42,101 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:23:42,103 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:24:42,084 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:24:42,086 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:25:42,058 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:25:42,059 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:26:42,070 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:26:42,084 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:26:42,085 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:27:42,079 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:27:42,080 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:28:42,066 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:28:42,068 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:29:42,121 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:29:42,121 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:29:42,123 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:30:42,073 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:30:42,075 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:31:42,072 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:31:42,074 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:32:42,081 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:32:42,083 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:32:42,085 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:33:42,180 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:33:42,181 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:34:42,211 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:34:42,211 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:34:42,212 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:35:42,192 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:35:42,194 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:36:42,191 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:36:42,195 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:37:42,210 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:37:42,210 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:37:42,212 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:38:42,193 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:38:42,197 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:39:42,198 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:39:42,201 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:40:42,208 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:40:42,210 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:40:42,212 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:41:42,204 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:41:42,206 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:41:42,207 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:42:42,178 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:43:42,200 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:43:42,201 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:43:42,204 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:44:42,190 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:44:42,191 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:45:42,191 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:45:42,193 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:46:42,203 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:46:42,204 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:46:42,207 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:47:42,186 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:47:42,189 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:48:42,176 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:48:42,180 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:49:42,210 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:49:42,212 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:49:42,214 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:50:42,193 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:50:42,196 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:51:42,205 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:51:42,207 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:51:42,208 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:52:42,202 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:52:42,205 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:52:42,206 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:53:42,179 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:54:42,201 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:54:42,204 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:54:42,206 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:55:42,188 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:55:42,192 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:56:42,190 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:56:42,192 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:57:42,202 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:57:42,202 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:57:42,205 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:58:42,185 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 05:58:42,188 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 05:59:42,187 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 05:59:42,189 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:00:42,204 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:00:42,204 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:00:42,207 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:01:42,186 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:01:42,189 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:02:42,200 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:02:42,202 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:02:42,204 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:03:42,186 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:03:42,187 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:04:42,199 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:04:42,200 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:04:42,203 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:05:42,201 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:05:42,204 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:06:42,204 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:06:42,206 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:07:42,202 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:07:42,205 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:07:42,206 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:08:42,200 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:08:42,203 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:09:42,202 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:09:42,203 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:10:42,200 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:10:42,203 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:11:42,211 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:11:42,213 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:11:42,215 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:13:44,095 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:13:44,098 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:18:25,581 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:18:25,584 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:18:25,586 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:20:50,524 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:20:50,528 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:23:26,561 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:23:26,562 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:27:02,651 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:27:02,652 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:27:02,655 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:28:02,625 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:29:02,650 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:29:02,653 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:29:02,654 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:30:02,633 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:30:02,635 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:30:02,637 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:31:02,641 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:31:02,644 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:32:02,635 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:32:02,637 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:33:02,635 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:33:02,637 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:34:02,649 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:34:02,651 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:35:02,629 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:35:02,631 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:36:02,645 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:36:02,650 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:36:02,651 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:37:02,629 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:37:02,633 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:38:02,632 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:38:02,636 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:39:02,643 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:39:02,643 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:39:02,646 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:40:02,643 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:40:02,644 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:40:02,647 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:41:02,622 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:42:02,647 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:42:02,648 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:42:02,651 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:43:02,641 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:43:02,643 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:43:02,644 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:44:02,604 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:45:02,617 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:45:02,619 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:45:02,620 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:46:02,640 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:46:02,640 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:46:02,642 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:47:02,602 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:48:02,629 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:48:02,630 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:48:02,632 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:49:02,614 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:49:02,617 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:49:02,619 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:50:02,602 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:51:02,627 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:51:02,628 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:51:02,630 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:52:02,622 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:52:02,623 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:52:02,623 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:53:02,638 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:53:02,640 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:53:02,642 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:54:02,613 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:55:02,631 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:55:02,632 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:55:02,635 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:56:02,610 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:56:02,611 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:56:02,613 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:57:02,607 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:57:02,608 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:58:02,608 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:58:02,613 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 06:59:02,892 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 06:59:02,897 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 06:59:02,898 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:00:02,878 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:00:02,882 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:01:02,900 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:01:02,901 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:01:02,903 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:02:02,891 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:02:02,894 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:03:02,895 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:03:02,899 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:04:02,908 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:04:02,909 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:04:02,911 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:05:02,896 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:05:02,900 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:06:02,900 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:06:02,903 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:06:02,904 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:07:02,883 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:07:02,884 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:08:02,902 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:08:02,903 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:08:02,907 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:09:02,888 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:09:02,892 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:10:02,902 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:10:02,905 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:11:02,888 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:11:02,915 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:11:02,917 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:12:02,893 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:12:02,897 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:13:02,914 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:13:02,915 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:14:02,980 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:14:02,984 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:15:02,994 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:15:02,997 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:15:02,998 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:16:02,986 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:16:02,988 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:17:02,974 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:17:02,979 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:18:02,959 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:18:02,982 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:18:02,983 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:19:02,986 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:19:02,989 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:20:02,981 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:20:02,985 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:21:03,003 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:21:03,007 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:21:03,007 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:22:02,985 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:22:02,988 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:23:03,012 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:23:03,015 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:23:03,017 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:24:03,020 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:24:03,022 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:24:03,024 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:25:02,984 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:26:03,003 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:26:03,005 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:26:03,007 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:27:03,005 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:27:03,010 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:27:03,011 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:28:02,994 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:31:05,750 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:31:05,751 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:31:05,754 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:32:05,749 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:32:05,751 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:32:05,752 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:33:05,711 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:34:05,754 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:34:05,755 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:34:05,758 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:35:05,757 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:35:05,757 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:35:05,759 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:36:05,717 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:37:05,760 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:37:05,760 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:37:05,761 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:38:05,748 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:38:05,748 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:38:05,749 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:39:05,748 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:39:05,751 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:40:05,751 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:40:05,753 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:41:05,724 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:41:05,727 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:42:05,769 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:42:05,770 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:42:05,772 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:43:05,763 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:43:05,765 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:44:05,772 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:44:05,773 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:44:05,774 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:45:05,758 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:45:05,761 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:46:05,698 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:46:05,699 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:47:05,740 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:47:05,740 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:47:05,743 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:48:05,728 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:48:05,731 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:49:05,732 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:49:05,733 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:50:05,743 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:50:05,745 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:50:05,747 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:51:05,744 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:51:05,745 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:51:05,747 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:52:05,724 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:53:05,747 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:53:05,749 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:53:05,750 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:54:05,721 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:54:05,724 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:55:05,735 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:55:05,738 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:56:05,752 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:56:05,752 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:56:05,754 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:57:05,729 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:57:05,732 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:58:05,754 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 07:58:05,754 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 07:58:05,757 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 07:59:05,731 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:00:05,752 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:00:05,756 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:00:05,758 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:01:05,733 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:01:05,735 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:01:05,736 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:02:05,729 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:02:05,731 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:02:05,732 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:03:05,703 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:04:05,729 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:04:05,729 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:04:05,732 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:05:05,735 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:05:05,735 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:05:05,739 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:06:05,709 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:07:05,732 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:07:05,733 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:07:05,734 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:08:05,692 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:08:05,694 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:09:05,716 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:09:05,719 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:10:05,734 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:10:05,735 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:10:05,736 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:11:05,719 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:11:05,721 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:12:05,721 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:12:05,723 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:13:05,735 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:13:05,737 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:13:05,738 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:14:05,737 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:14:05,737 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:14:05,740 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:15:05,724 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:15:05,726 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:16:05,540 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:16:05,544 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:17:05,549 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:17:05,551 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:17:05,552 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:18:05,540 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:18:05,542 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:18:05,544 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:19:05,518 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:20:05,543 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:20:05,543 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:20:05,544 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:21:05,526 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:21:05,528 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:22:05,539 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:22:05,539 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:22:05,541 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:23:05,500 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:23:05,502 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:24:05,530 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:24:05,530 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:24:05,534 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:25:05,514 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:25:05,517 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:26:05,519 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:26:05,521 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:27:05,527 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:27:05,527 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:27:05,529 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:28:05,509 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:28:05,511 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:29:05,522 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:29:05,523 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:29:05,525 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:30:05,504 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:30:05,508 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:34:14,652 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:34:14,654 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:35:37,696 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:35:37,699 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:35:37,700 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:39:59,768 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:39:59,770 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:39:59,771 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:47:11,056 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:48:11,047 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:48:11,048 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:48:11,049 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:49:11,083 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:49:11,084 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:49:11,086 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:50:11,222 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:50:11,223 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:50:11,225 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:51:11,184 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:52:11,213 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:52:11,215 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:52:11,216 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:53:11,205 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:53:11,209 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:54:11,215 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:54:11,217 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:55:11,223 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:55:11,228 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:55:11,229 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:56:11,214 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:56:11,218 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:57:11,218 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:57:11,220 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:58:11,220 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:58:11,221 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:58:11,225 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 08:59:11,236 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 08:59:11,236 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 08:59:11,239 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:00:11,231 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:00:11,232 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:00:11,235 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:01:11,204 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:02:11,217 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:02:11,218 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:02:11,220 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:03:11,242 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:03:11,244 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:03:11,246 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:04:11,220 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:05:11,198 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:05:11,198 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:05:11,200 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:06:11,204 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:06:11,204 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:06:11,206 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:07:11,191 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:07:11,194 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:08:11,183 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:08:11,186 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:09:11,199 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:09:11,199 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:09:11,203 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:10:11,201 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:10:11,202 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:10:11,203 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:11:11,190 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:12:11,193 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:12:11,197 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:12:11,200 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:13:11,209 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:13:11,211 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:13:11,212 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:14:11,197 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:14:11,200 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:15:11,175 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:15:11,178 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:16:11,212 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:16:11,212 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:16:11,215 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:17:11,197 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:17:11,200 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:17:11,202 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:18:11,175 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:19:11,214 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:19:11,215 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:19:11,218 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:20:11,140 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:20:11,143 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:21:11,140 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:21:11,142 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:22:11,130 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:22:11,133 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:23:11,158 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:23:11,158 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:23:11,159 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:24:11,147 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:24:11,148 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:24:11,148 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:25:11,118 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:26:11,156 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:26:11,157 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:26:11,159 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:27:11,140 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:27:11,141 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:27:11,144 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:28:11,153 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:28:11,154 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:28:11,156 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:29:11,118 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:30:11,153 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:30:11,153 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:30:11,156 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:31:11,141 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:31:11,144 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:31:11,145 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:32:11,143 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:32:11,145 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:33:11,180 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:33:11,182 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:33:11,183 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:34:11,129 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:35:11,128 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:35:11,128 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:35:11,129 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:36:11,127 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:36:11,128 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:36:11,129 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:37:11,116 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:37:11,117 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:37:11,120 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:38:11,103 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:39:11,124 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:39:11,126 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:39:11,127 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:40:11,115 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:40:11,118 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:40:11,120 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:41:11,110 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:41:11,114 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:41:11,116 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:42:11,103 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:43:11,112 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:43:11,116 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:43:11,119 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:44:11,118 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:44:11,118 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:44:11,120 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:45:11,114 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:45:11,115 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:45:11,115 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:46:11,087 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:47:11,113 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:47:11,114 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:47:11,116 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:48:11,120 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:48:11,123 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:48:11,124 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:49:11,121 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:49:11,121 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:49:11,124 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:51:22,155 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:52:22,171 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:52:22,175 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:52:22,178 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:53:22,177 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:53:22,178 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:53:22,180 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:54:22,150 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:55:22,152 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:55:22,153 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:55:22,156 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:56:22,143 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:57:22,165 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:57:22,167 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:57:22,169 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:58:22,160 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 09:58:22,163 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 09:58:22,165 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 09:59:22,138 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:00:22,159 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:00:22,160 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:00:22,163 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:01:22,134 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:02:22,157 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:02:22,158 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:02:22,160 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:03:22,139 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:03:22,142 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:04:22,146 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:04:22,148 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:05:22,151 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:05:22,152 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:05:22,154 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:06:22,135 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:06:22,139 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:07:22,151 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:07:22,151 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:07:22,153 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:08:22,102 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:09:22,150 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:09:22,150 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:09:22,151 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:10:22,132 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:10:22,134 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:11:22,118 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:11:22,121 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:12:22,142 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:12:22,143 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:12:22,145 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:13:22,128 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:13:22,131 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:14:22,133 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:14:22,136 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:14:22,137 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:15:22,122 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:15:22,126 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:16:22,118 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:16:22,119 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:17:22,130 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:17:22,132 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:17:22,134 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:18:22,130 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:18:22,132 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:18:22,133 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:19:22,120 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:19:22,123 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:19:22,125 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:20:22,101 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:21:22,125 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:21:22,127 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:21:22,129 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:22:22,096 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:23:22,122 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:23:22,124 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:23:22,126 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:24:22,090 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:24:22,091 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:25:22,090 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:25:22,094 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:26:22,123 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:26:22,123 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:26:22,127 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:27:22,104 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:27:22,106 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:28:22,118 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:28:22,118 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:28:22,120 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:29:22,116 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:29:22,116 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:29:22,118 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:30:22,110 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:30:22,111 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:30:22,112 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:31:22,085 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:32:22,110 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:32:22,111 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:32:22,113 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:33:22,105 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:33:22,106 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:33:22,109 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:34:22,076 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:35:22,105 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:35:22,105 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:35:22,107 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:36:22,100 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:36:22,102 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:36:22,104 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:37:22,083 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:38:22,093 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:38:22,096 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:38:22,097 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:39:22,079 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:39:22,079 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:39:22,082 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:40:22,081 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:40:22,083 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:41:22,076 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:41:22,080 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:42:22,093 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:42:22,094 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:42:22,096 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:43:22,089 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:43:22,089 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:43:22,091 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:44:22,072 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:44:22,072 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:45:22,073 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:45:22,074 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:46:22,081 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:46:22,082 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:46:22,085 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:47:22,058 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:47:22,062 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:48:22,065 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:48:22,069 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:49:22,076 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:49:22,077 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:49:22,078 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:50:22,059 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:50:22,061 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:51:22,072 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:51:22,074 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 10:51:22,076 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 10:58:38,289 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 10:58:38,292 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:02:14,039 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:02:14,040 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:05:29,152 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:05:29,157 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:05:29,159 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:10:12,811 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:10:12,814 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:11:16,139 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:11:16,142 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:12:16,142 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:12:16,146 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:12:16,147 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:13:16,142 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:13:16,144 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:14:16,124 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:14:16,128 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:15:16,138 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:15:16,138 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:15:16,139 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:16:16,120 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:16:16,124 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:16:16,134 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:17:16,148 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:17:16,149 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:17:16,150 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:18:16,109 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:19:16,136 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:19:16,140 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:19:16,141 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:20:16,148 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:20:16,148 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:20:16,153 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:21:16,108 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:22:16,142 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:22:16,143 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:22:16,146 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:23:16,129 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:23:16,131 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:24:16,117 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:24:16,120 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:25:16,135 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:25:16,137 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:25:16,139 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:26:16,117 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:26:16,122 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:27:16,110 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:27:16,111 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:27:16,112 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:28:16,132 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:28:16,136 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:28:16,136 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:29:16,120 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:30:15,966 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:30:15,968 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:30:15,970 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:31:15,967 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:31:15,968 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:31:15,970 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:32:15,936 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:33:15,947 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:33:15,951 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:33:15,953 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:34:15,962 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:34:15,962 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:34:15,964 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:35:15,934 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:36:15,947 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:36:15,950 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:36:15,951 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:37:15,962 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:37:15,963 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:37:15,965 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:38:15,916 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:39:15,965 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:39:15,967 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:39:15,969 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:40:15,931 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:41:15,939 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:41:15,941 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:41:15,943 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:42:15,940 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:42:15,940 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:42:15,942 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:43:15,936 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:43:15,936 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:43:15,939 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:44:15,909 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:45:15,881 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:45:15,883 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:45:15,884 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:46:15,879 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:46:15,879 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:46:15,883 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:47:15,866 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:47:15,867 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:47:15,868 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:48:15,839 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:49:15,865 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:49:15,866 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:49:15,868 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:50:15,866 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:50:15,866 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:50:15,868 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:51:15,861 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:51:15,861 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:51:15,862 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:52:15,831 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:53:15,859 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:53:15,863 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:53:15,864 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:54:15,842 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:54:15,843 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:54:15,845 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:55:15,838 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:56:15,860 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:56:15,863 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:56:15,865 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:57:15,864 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:57:15,865 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:57:15,867 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:58:15,835 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 11:59:15,845 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 11:59:15,846 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 11:59:15,848 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:00:15,847 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:00:15,847 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:00:15,848 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:01:15,971 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:02:16,003 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:02:16,004 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:02:16,006 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:03:16,009 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:03:16,011 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:03:16,014 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:04:15,987 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:05:16,014 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:05:16,014 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:05:16,018 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:06:15,999 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:07:16,010 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:07:16,011 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:07:16,013 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:08:15,989 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:08:15,993 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:09:15,984 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:09:15,989 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:10:16,007 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:10:16,008 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:10:16,011 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:11:15,970 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:11:15,972 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:12:15,992 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:12:15,996 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:13:16,007 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:13:16,009 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:13:16,011 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:14:15,988 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:14:15,989 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:15:16,004 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:15:16,006 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:15:16,007 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:16:16,017 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:16:16,019 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:16:16,020 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:17:15,986 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:18:16,012 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:18:16,012 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:18:16,015 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:19:16,007 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:19:16,010 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:19:16,012 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:20:15,984 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:21:16,010 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:21:16,011 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:21:16,013 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:22:16,005 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:22:16,008 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:22:16,010 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:23:15,993 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:23:15,997 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:24:15,997 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:24:16,001 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:25:16,008 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:25:16,009 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:25:16,010 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:26:15,989 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:26:15,990 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:26:15,993 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:27:15,983 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:28:16,008 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:28:16,010 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:28:16,011 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:29:15,976 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:29:15,977 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:30:15,992 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:30:15,994 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:31:16,008 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:31:16,009 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:31:16,010 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:32:16,086 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:32:16,087 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:33:16,085 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:33:16,086 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:34:16,107 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:34:16,107 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:34:16,109 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:35:16,076 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:36:16,100 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:36:16,100 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:36:16,103 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:37:16,084 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:37:16,087 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:38:16,085 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:38:16,089 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:39:16,101 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:39:16,101 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:39:16,102 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:40:16,088 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:40:16,091 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:41:16,091 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:41:16,093 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:42:16,103 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:42:16,104 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:42:16,105 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:43:16,086 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:43:16,089 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:44:16,082 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:44:16,084 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:45:16,100 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:45:16,101 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:45:16,103 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:46:16,090 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:46:16,092 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:47:16,187 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:47:16,188 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:47:16,189 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:48:16,172 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:48:16,174 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:49:16,153 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:49:16,156 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:50:16,189 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:50:16,190 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:50:16,192 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:51:16,188 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:51:16,191 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:51:16,192 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:52:16,146 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:53:16,195 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:53:16,196 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:53:16,197 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:54:16,189 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:54:16,192 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:54:16,194 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:55:16,172 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:56:16,194 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:56:16,195 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:56:16,198 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:57:16,188 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:57:16,188 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:57:16,189 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:58:16,174 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 12:59:16,197 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 12:59:16,200 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 12:59:16,201 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:00:16,185 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:00:16,185 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:00:16,187 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:01:16,176 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:02:16,167 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:02:16,167 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:02:16,169 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:03:16,187 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:03:16,189 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:04:16,211 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:04:16,212 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:04:16,215 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:05:16,194 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:05:16,196 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:06:16,205 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:06:16,208 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:06:16,210 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:07:16,177 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:07:16,180 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:08:16,195 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:08:16,198 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:09:16,210 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:09:16,211 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:09:16,213 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:10:16,187 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:10:16,189 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:11:16,200 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:11:16,203 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:12:16,216 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:12:16,216 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:12:16,219 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:13:16,202 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:13:16,204 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:14:16,207 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:14:16,209 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:15:16,205 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:15:16,208 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:16:16,217 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:16:16,218 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:16:16,221 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:17:16,204 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:17:16,208 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:18:16,246 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:18:16,249 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:18:16,250 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:19:16,255 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:19:16,256 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:20:16,269 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:20:16,269 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:20:16,272 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:21:16,256 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:21:16,260 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:22:16,260 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:22:16,262 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:23:16,273 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:23:16,276 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:23:16,278 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:24:16,268 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:24:16,270 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:25:16,263 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:25:16,266 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:26:16,281 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:26:16,282 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:26:16,283 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:27:16,281 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:27:16,282 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:27:16,284 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:29:19,117 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:29:19,118 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:36:25,506 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:36:25,507 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:37:25,512 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:37:25,517 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:37:25,518 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:40:45,081 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:40:45,083 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:45:58,640 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:45:58,643 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:49:03,733 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:49:03,735 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:49:03,737 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:50:03,678 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:50:03,680 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:51:03,690 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:51:03,692 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:51:03,693 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:52:03,675 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:52:03,676 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:53:03,670 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:53:03,672 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:54:03,690 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:54:03,691 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:54:03,694 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:55:03,678 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:55:03,681 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:56:03,670 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:56:03,674 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:57:03,693 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 13:57:03,695 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:57:03,696 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 13:58:03,679 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 13:58:03,680 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:02:12,670 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:02:12,672 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:04:07,768 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:04:07,768 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:04:07,769 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:05:07,758 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:05:07,763 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:06:07,777 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:06:07,779 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:06:07,782 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:07:07,772 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:07:07,774 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:07:07,776 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:08:07,744 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:09:07,782 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:09:07,782 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:09:07,784 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:10:07,778 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:10:07,778 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:10:07,782 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:11:07,765 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:11:07,767 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:12:07,762 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:12:07,764 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:13:07,769 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:13:07,773 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:13:07,775 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:14:07,779 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:14:07,781 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:14:07,783 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:15:07,745 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:16:07,771 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:16:07,772 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:16:07,774 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:17:07,846 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:17:07,851 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:17:07,852 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:18:07,816 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:19:07,818 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:19:07,822 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:19:07,823 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:20:07,838 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:20:07,840 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:20:07,842 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:21:07,830 basehttp 33886 6220263424 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:21:07,831 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:21:07,832 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:22:07,808 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:23:07,836 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:23:07,836 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:23:07,837 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:24:07,847 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:24:07,849 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:24:07,850 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:25:07,817 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:26:07,833 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:26:07,834 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:26:07,835 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:27:07,832 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:27:07,833 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:27:07,836 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:28:07,843 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:28:07,844 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:28:07,847 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:29:07,831 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:29:07,832 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:29:07,835 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:30:07,821 basehttp 33886 6203437056 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:31:07,834 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:31:07,836 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:31:07,838 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:32:07,837 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:32:07,844 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:32:07,845 basehttp 33886 6237089792 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:33:07,852 basehttp 33886 6237089792 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:33:58,752 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:33:58,753 basehttp 33886 6203437056 "GET /en/htmx/system-health/ HTTP/1.1" 200 1356 +INFO 2025-09-06 14:33:58,755 basehttp 33886 6220263424 "GET /en/htmx/dashboard-stats/ HTTP/1.1" 200 2094 +INFO 2025-09-06 14:34:15,139 basehttp 33886 6220263424 "GET /en/inventory/ HTTP/1.1" 200 54797 +INFO 2025-09-06 14:34:15,152 basehttp 33886 6220263424 "GET /static/css/custom.css HTTP/1.1" 304 0 +INFO 2025-09-06 14:34:15,203 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:34:38,000 basehttp 33886 6220263424 "GET /en/inventory/items/ HTTP/1.1" 200 73396 +INFO 2025-09-06 14:34:38,009 basehttp 33886 6203437056 "GET /static/plugins/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css HTTP/1.1" 200 15733 +INFO 2025-09-06 14:34:38,009 basehttp 33886 6220263424 "GET /static/plugins/select2/dist/css/select2.min.css HTTP/1.1" 200 14966 +INFO 2025-09-06 14:34:38,010 basehttp 33886 6253916160 "GET /static/plugins/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js HTTP/1.1" 200 33871 +INFO 2025-09-06 14:34:38,010 basehttp 33886 6237089792 "GET /static/plugins/select2/dist/js/select2.min.js HTTP/1.1" 200 70851 +INFO 2025-09-06 14:34:38,046 basehttp 33886 6237089792 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:34:58,986 basehttp 33886 6237089792 "GET /en/inventory/stock/?item=2 HTTP/1.1" 200 134411 +INFO 2025-09-06 14:34:59,001 basehttp 33886 6237089792 "GET /static/plugins/datatables.net-bs5/css/dataTables.bootstrap5.min.css HTTP/1.1" 200 15096 +INFO 2025-09-06 14:34:59,004 basehttp 33886 6203437056 "GET /static/plugins/datatables.net-bs5/js/dataTables.bootstrap5.min.js HTTP/1.1" 200 1470 +INFO 2025-09-06 14:34:59,005 basehttp 33886 6253916160 "GET /static/plugins/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css HTTP/1.1" 200 6044 +INFO 2025-09-06 14:34:59,005 basehttp 33886 6287568896 "GET /static/plugins/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js HTTP/1.1" 200 1796 +INFO 2025-09-06 14:34:59,006 basehttp 33886 6270742528 "GET /static/plugins/datatables.net-responsive/js/dataTables.responsive.min.js HTTP/1.1" 200 16086 +INFO 2025-09-06 14:34:59,006 basehttp 33886 6237089792 "GET /static/plugins/dropzone/src/options.js HTTP/1.1" 200 23721 +INFO 2025-09-06 14:34:59,006 basehttp 33886 6220263424 "GET /static/plugins/datatables.net/js/dataTables.min.js HTTP/1.1" 200 95735 +INFO 2025-09-06 14:34:59,041 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:35:14,797 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 14:35:14,842 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:36:19,758 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:36:20,757 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 14:36:20,854 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:38:00,554 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:38:00,564 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 14:38:00,774 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:46:25,170 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:46:25,184 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 14:46:25,323 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:47:26,166 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:47:26,178 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 14:47:26,252 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:48:27,151 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:48:27,161 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 14:48:27,268 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:49:56,856 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 14:49:56,868 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 14:49:56,969 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:00:49,031 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:00:49,045 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:00:49,143 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:05:53,451 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:05:53,463 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:05:53,552 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:12:27,937 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:12:27,952 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:12:28,016 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:13:28,948 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:13:28,960 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:13:29,067 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:14:29,957 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:14:29,970 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:14:30,075 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:15:30,930 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:15:30,940 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:15:31,070 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:16:31,940 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:16:31,953 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:16:32,018 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:17:32,941 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:17:32,952 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:17:33,015 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:18:33,943 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:18:33,955 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:18:34,019 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:19:34,947 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:19:34,960 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:19:35,051 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:20:35,963 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:20:35,978 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:20:36,083 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:21:36,962 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:21:36,975 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:21:37,040 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:22:37,969 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:22:37,981 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:22:38,046 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:23:38,972 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:23:38,984 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:23:39,064 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:24:39,965 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:24:39,978 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:24:40,046 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:25:40,969 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:25:40,982 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:25:41,092 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:26:41,972 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:26:41,985 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:26:42,067 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:27:42,970 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:27:42,983 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:27:43,077 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:28:43,984 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:28:43,995 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:28:44,096 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:29:44,978 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:29:44,989 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:29:45,092 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:30:46,014 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:30:46,026 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:30:46,090 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:31:46,969 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:31:46,982 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:31:47,048 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:32:47,982 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:32:47,989 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:32:48,144 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:33:48,983 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:33:48,993 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:33:49,101 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:34:49,981 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:34:49,995 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:34:50,102 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:35:50,974 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:35:50,988 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:35:51,048 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:36:51,965 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:36:51,975 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:36:52,007 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:37:52,975 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:37:52,988 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:37:53,088 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:38:53,979 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:38:53,992 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:38:54,055 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:39:54,979 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:39:54,990 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:39:55,057 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:40:55,989 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:40:56,000 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:40:56,106 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:41:56,991 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:41:57,003 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:41:57,121 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:42:58,005 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:42:58,013 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:42:58,137 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:43:59,000 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:43:59,009 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:43:59,077 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:44:59,984 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:44:59,994 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:45:00,090 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:46:01,003 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:46:01,013 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:46:01,163 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:47:01,995 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:47:02,005 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:47:02,106 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:48:02,985 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:48:02,998 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:48:03,062 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:49:03,999 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:49:04,010 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:49:04,073 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:50:04,986 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:50:05,001 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:50:05,068 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:51:05,860 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:51:05,874 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:51:05,951 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:52:06,873 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:52:06,885 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:52:07,004 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:53:07,885 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:53:07,893 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:53:08,003 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:54:08,855 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:54:08,867 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:54:08,959 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:55:09,870 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:55:09,882 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:55:09,993 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:56:10,869 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:56:10,879 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:56:10,977 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:57:11,870 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:57:11,882 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:57:11,986 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:58:12,860 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:58:12,874 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:58:12,939 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:59:13,869 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 15:59:13,879 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 15:59:13,940 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:00:14,868 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:00:14,879 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:00:14,983 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:01:15,869 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:01:15,880 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:01:15,982 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:02:16,863 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:02:16,875 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:02:16,996 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:03:17,881 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:03:17,890 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:03:17,985 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:04:18,864 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:04:18,875 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:04:18,947 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:05:19,850 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:05:19,862 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:05:19,969 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:06:20,865 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:06:20,878 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:06:21,012 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:07:21,713 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:07:21,727 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:07:21,821 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:08:22,706 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:08:22,720 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:08:22,858 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:09:23,713 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:09:23,725 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:09:23,825 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:10:24,704 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:10:24,715 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:10:24,817 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:11:25,705 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:11:25,718 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:11:25,788 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:12:26,704 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:12:26,715 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:12:26,834 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:13:27,717 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:13:27,727 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:13:27,851 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:14:28,749 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:14:28,759 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:14:28,856 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:15:29,736 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:15:29,753 basehttp 33886 6203437056 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:15:29,856 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:16:30,741 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:16:30,752 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:16:30,851 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:16:47,075 basehttp 33886 6220263424 "GET /en/blood-bank HTTP/1.1" 301 0 +INFO 2025-09-06 16:16:47,119 basehttp 33886 6203437056 "GET /en/blood-bank/ HTTP/1.1" 200 48550 +INFO 2025-09-06 16:16:47,146 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:17:47,167 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:18:13,285 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:18:13,299 basehttp 33886 6220263424 "GET /en/inventory/stock/ HTTP/1.1" 200 134411 +INFO 2025-09-06 16:18:13,342 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:18:19,604 basehttp 33886 6220263424 "GET /en/blood-bank/donors/create/ HTTP/1.1" 200 29822 +INFO 2025-09-06 16:18:19,643 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:19:19,661 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +WARNING 2025-09-06 16:20:13,056 log 33886 6220263424 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-06 16:20:13,056 basehttp 33886 6220263424 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-06 16:20:19,672 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:21:03,834 basehttp 33886 6220263424 "GET /en/blood-bank/donors/ HTTP/1.1" 200 83869 +WARNING 2025-09-06 16:21:03,852 log 33886 6220263424 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-06 16:21:03,853 basehttp 33886 6220263424 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-06 16:21:03,940 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:21:20,680 basehttp 33886 6220263424 "GET /en/blood-bank/donors/34/eligibility/ HTTP/1.1" 200 29485 +WARNING 2025-09-06 16:21:20,702 log 33886 6220263424 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-09-06 16:21:20,702 basehttp 33886 6220263424 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 2668 +INFO 2025-09-06 16:21:20,776 basehttp 33886 6220263424 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 +INFO 2025-09-06 16:22:20,777 basehttp 33886 6203437056 "GET /en/htmx/system-notifications/ HTTP/1.1" 200 3840 diff --git a/templates/.DS_Store b/templates/.DS_Store index c1b68edb..cb3de779 100644 Binary files a/templates/.DS_Store and b/templates/.DS_Store differ diff --git a/templates/appointments/appointment_list.html b/templates/appointments/appointment_list.html index fe9c5162..7d3a1dbe 100644 --- a/templates/appointments/appointment_list.html +++ b/templates/appointments/appointment_list.html @@ -108,39 +108,7 @@ {% if is_paginated %} - +{% include 'partial/pagination.html' %} {% endif %} {% endblock %} diff --git a/templates/appointments/partials/appointment_list.html b/templates/appointments/partials/appointment_list.html index 9bd10613..26d8c17c 100644 --- a/templates/appointments/partials/appointment_list.html +++ b/templates/appointments/partials/appointment_list.html @@ -94,14 +94,12 @@
{% if appointment.status == 'SCHEDULED' or appointment.status == 'CONFIRMED' %} - + {% endif %} diff --git a/templates/base.html b/templates/base.html index b2c99b40..054a540a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -27,11 +27,12 @@ + + - - +{# #} diff --git a/templates/blood_bank/.DS_Store b/templates/blood_bank/.DS_Store index a1eb34fa..ce0a6a72 100644 Binary files a/templates/blood_bank/.DS_Store and b/templates/blood_bank/.DS_Store differ diff --git a/templates/blood_bank/dashboard.html b/templates/blood_bank/dashboard.html index a0c68c23..5cb46e1f 100644 --- a/templates/blood_bank/dashboard.html +++ b/templates/blood_bank/dashboard.html @@ -3,9 +3,9 @@ {% block title %}Blood Bank Dashboard{% endblock %} -{% block extra_css %} - - +{% block css %} + + {% endblock %} {% block content %} @@ -346,11 +346,11 @@ {% endblock %} -{% block extra_js %} - - - - +{% block js %} + + + + - - - +{% block js %} + + + + + + diff --git a/templates/inventory/dashboard.html b/templates/inventory/dashboard.html index 3de46c02..cf4d6428 100644 --- a/templates/inventory/dashboard.html +++ b/templates/inventory/dashboard.html @@ -45,141 +45,58 @@
-
+
-
+
-
Total Items
-

{{ total_items }}

- {{ active_items }} active -
-
- +

{{ total_items }}

+

Total Items

+
-
+
-
Locations
-

{{ total_locations }}

- Storage areas -
-
- +

{{ total_locations }}

+

Locations

+
-
+
-
Suppliers
-

{{ total_suppliers }}

- Active partners -
-
- +

{{ total_suppliers }}

+

Suppliers

+
-
+
-
Total Value
-

${{ total_inventory_value|floatformat:0 }}

- Inventory worth -
-
- -
-
-
-
-
-
- - -
-
-
-
-
-
-
Low Stock
-

{{ low_stock_items }}

- Items below minimum -
-
- -
-
-
-
-
- -
-
-
-
-
-
Expired
-

{{ expired_items }}

- Past expiry date -
-
- -
-
-
-
-
- -
-
-
-
-
-
Expiring Soon
-

{{ expiring_soon_items }}

- Within 30 days -
-
- -
-
-
-
-
- -
-
-
-
-
-
Active Orders
-

{{ active_orders }}

- In progress -
-
- +

ê{{ total_inventory_value|floatformat:'2g' }}

+

Total Value

+
@@ -195,9 +112,9 @@
View All - - - +{# #} +{# #} +{# #}
@@ -216,20 +133,20 @@ {% for order in recent_orders %} - - + - {{ order.order_number }} + {{ order.po_number }} - {{ order.supplier.name|truncatechars:20 }} - + {{ order.supplier.name }} + {{ order.get_status_display }} - ê{{ order.total_amount|floatformat:'2g' }} - {{ order.order_date|date:" Y M d" }} + ê{{ order.total_amount|floatformat:'2g' }} + {{ order.order_date|date:" Y M d" }} {% endfor %} @@ -257,9 +174,9 @@
View All - - - +{# #} +{# #} +{# #}
@@ -308,7 +225,7 @@
{% if recent_stock_movements %}
- +
@@ -320,19 +237,19 @@ {% for stock in recent_stock_movements %} - - - + - + {% endfor %} @@ -415,9 +332,9 @@
- - - +{# #} +{# #} +{# #}
@@ -434,9 +351,9 @@
- - - +{# #} +{# #} +{# #}
@@ -446,6 +363,7 @@
+ - - - - +{% block js %} + + + + + - - - - + + + + +
Item
+ - {{ stock.item.item_name|truncatechars:25 }} + {{ stock.inventory_item.item_name }} {{ stock.location.location_name|truncatechars:15 }} - - {{ stock.quantity }} + {{ stock.location.name }} + + {{ stock.quantity_available }} {{ stock.updated_at|date:"M d, H:i" }}{{ stock.updated_at|date:"M d, H:i" }}