##// 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
from django.conf.urls import url
from .views import main, plot
urlpatterns = [
url(r'^$', main, name='url_main'),
url(r'^(?P<code>[0-9]+)/(?P<plot>[0-9a-z]+)/$', plot, name='url-plot'),
]