##// END OF EJS Templates
Update bootstrap version to 4.5 and fix loader
Update bootstrap version to 4.5 and fix loader

File last commit:

r22:3d86891def25
r42:8983ffdbf90f
Show More
routing.py
8 lines | 302 B | text/x-python | PythonLexer
from django.conf.urls import url
from . import consumers
websocket_urlpatterns = [
url(r'^ws/main/$', consumers.MainConsumer),
url(r'^ws/realtime/(?P<code>[^/]+)/(?P<plot>[^/]+)/$', consumers.PlotConsumer),
url(r'^ws/database/(?P<code>[^/]+)/(?P<plot>[^/]+)/$', consumers.PlotConsumer),
]