##// END OF EJS Templates
Add static images and fix template
Add static images and fix template

File last commit:

r45:08ba8fe1a748
r45:08ba8fe1a748
Show More
routing.py
9 lines | 344 B | text/x-python | PythonLexer
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'^ws/main/$', consumers.MainConsumer.as_asgi()),
re_path(r'^ws/realtime/(?P<code>[^/]+)/(?P<plot>[^/]+)/$', consumers.PlotConsumer.as_asgi()),
re_path(r'^ws/database/(?P<code>[^/]+)/(?P<plot>[^/]+)/$', consumers.PlotConsumer.as_asgi()),
]