##// END OF EJS Templates
Remove redis port and update containers names
Remove redis port and update containers names

File last commit:

r27:c1db622aca0e
r29:d5850278df50
Show More
urls.py
10 lines | 311 B | text/x-python | PythonLexer
from django.conf.urls import url
from .views import main, plot, tools, reports
urlpatterns = [
url(r'^$', main, name='url_main'),
url(r'^tools/$', tools, name='url_tools'),
url(r'^reports/$', reports, name='url_reports'),
url(r'^(?P<code>[0-9]+)/(?P<plot>[-\w]+)/$', plot, name='url-plot'),
]