##// END OF EJS Templates
Se solucionó el mensaje de advertencia HINT por DEFATUL_AUTO_FIELD
Se solucionó el mensaje de advertencia HINT por DEFATUL_AUTO_FIELD

File last commit:

r338:7377db7c77e8
r360:3d072a3b4687
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'),
)