fix admin status
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good

This commit is contained in:
juanjo
2026-04-12 22:56:35 +02:00
parent e5908b1880
commit 3da81a9495
5 changed files with 49 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
from django.urls import path
from .views import status_view
urlpatterns = [
# Ruta final: /admin/status/
path('status/', status_view, name='admin_status'),
]