##// END OF EJS Templates
new structure and views.py (pedestal) update
new structure and views.py (pedestal) update

File last commit:

r366:bdf15dfd5ebe
r366:bdf15dfd5ebe
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'),
)