from common.views import index as ind, RegisterView, CreateUserProfile from django.urls import path, include from django.contrib.auth.views import LoginView, LogoutView from django.urls import reverse_lazy from allauth.account.views import login, logout app_name = 'common' urlpatterns = [ path('common/', ind, name='index_common'), path('login/', login, name='login'), path('logout/', logout, name='logout'), path('register/', RegisterView.as_view( template_name='register.html', success_url=reverse_lazy('common:profile-create')), name='register'), path('profile-create/', CreateUserProfile.as_view(), name='profile-create'), ]
from common.views import index, RegisterView, CreateUserProfile from django.contrib.auth.views import LoginView, LogoutView from django.urls import reverse_lazy from django.urls import path from django.urls import include from allauth.account.views import login, logout #стандартные авторизационные отбработчики app_name = 'common' urlpatterns = [ path('login/', login, name='login'), path('logout/', logout, name='logout'), path('', index, name='index'), # path('login/', LoginView.as_view(template_name='common/login.html'), name='login'), # path('logout/', LogoutView.as_view(), name='logout'), path('register/', RegisterView.as_view( template_name='common/register.html', success_url=reverse_lazy('common:profile-create')), name='register'), path('profile-create/', CreateUserProfile.as_view(template_name='common/profile-create.html'), name='profile-create'), ]