##// 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:

r39:b80dda8fb07c
r42:8983ffdbf90f
Show More
urls.py
14 lines | 602 B | text/x-python | PythonLexer
from django.conf.urls import url
from .views import main, plot, tools, plot_skynoise, reports, about, plot_overjro
urlpatterns = [
url(r'^$', main, name='url_main'),
url(r'^experiment/(?P<tag>[-\w]+)/$', main, name='url_main'),
url(r'^tools/$', tools, name='url_tools'),
url(r'^tools/skynoise.png$', plot_skynoise, name='url_skynoise'),
url(r'^tools/overjro.png$', plot_overjro, name='url_overjro'),
url(r'^reports/$', reports, name='url_reports'),
url(r'^about/$', about, name='url_about'),
url(r'^plot/(?P<code>[0-9]+)/(?P<plot>[-\w]+)/$', plot, name='url-plot'),
]