##// END OF EJS Templates
Add modules for interactive plots and upload data
Add modules for interactive plots and upload data

File last commit:

r2:98d277d09dd7
r2:98d277d09dd7
Show More
urls.py
8 lines | 208 B | text/x-python | PythonLexer
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^login/$', views.login_view, name='login'),
url(r'^logout/$', views.logout_view, name='logout'),
]
app_name = 'login'