##// END OF EJS Templates
Fix noise plot not plotting gaps
Fix noise plot not plotting gaps

File last commit:

r11:2395d68d2d5f
r12:15f210b8fac1
Show More
urls.py
9 lines | 203 B | text/x-python | PythonLexer
First version RTI, Spectra, Noise + Docker
r0 from django.conf.urls import url
Developer
New version with cards and status alerts
r11 from .views import main, plot
First version RTI, Spectra, Noise + Docker
r0
urlpatterns = [
url(r'^$', main, name='url_main'),
Developer
New version with cards and status alerts
r11
url(r'^(?P<code>[0-9]+)/(?P<plot>[0-9a-z]+)/$', plot, name='url-plot'),
]