##// END OF EJS Templates
Check the readme.md for the bokeh version notes and requeriments.
Check the readme.md for the bokeh version notes and requeriments.

File last commit:

r338:7377db7c77e8
r344:ada396c7b35b
Show More
urls.py
8 lines | 283 B | text/x-python | PythonLexer
from django.urls import path
from django.contrib.auth import views as auth_views
urlpatterns = (
path('logout/', auth_views.LogoutView.as_view(next_page='/'), name='url_logout'),
path('login/', auth_views.LoginView.as_view(template_name='login.html'), name='url_login'),
)