feat: websockets
CI / test (push) Successful in 1m56s
CI / build (push) Successful in 48s

This commit is contained in:
2026-07-31 14:27:50 +02:00
parent 125c9dd186
commit 393b39cacd
13 changed files with 626 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
from django.views.generic import TemplateView
from backoffice.mixins import BackofficeAccessMixin
class WebSocketDemoView(BackofficeAccessMixin, TemplateView):
"""Verifica el cableado de Channels + htmx (ver EchoConsumer). No es una
funcionalidad real, solo la base para construir encima."""
template_name = 'backoffice/ws_demo.html'
section = 'ws_demo'