##// END OF EJS Templates
New server with req-rep and thread for updating status
New server with req-rep and thread for updating status

File last commit:

r4:edb67fcfd51c
r10:07b9b665c767
Show More
urls.py
8 lines | 247 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]+)/$', main, name='url_main'),
url(r'^(?P<code>[0-9]+)/(?P<plot>[0-9a-z]+)/$', main, name='url_main'),
]