##// END OF EJS Templates
Docker working
Docker working

File last commit:

r0:476448e11002
r1:f2324aa7e45d
Show More
urls.py
7 lines | 191 B | text/x-python | PythonLexer
from django.conf.urls import url
from .views import main
urlpatterns = [
url(r'^$', main, name='url_main'),
url(r'^(?P<code>[0-9]+)/(?P<plot>[0-9a-z]+)/$', main, name='url_main'),
]