O
AUTH_USER_MODEL
в настройках?https://docs.djangoproject.com/en/3.0/topics/auth/customizing/#using-a-custom-user-model-when-starting-a-project
Size: a a a
O
AUTH_USER_MODEL
в настройках?Т
RS
RS
Т
D
url(r'^posts/(?P<post_id>[0-9]+)/$', post_detail_view)
path('posts/<int:post_id>/', post_detail_view)
RS
Т
url(r'^posts/(?P<post_id>[0-9]+)/$', post_detail_view)
path('posts/<int:post_id>/', post_detail_view)
Т
Т
D
url(r'^remove/(?P<product_id>\d+)/$', views.cart_remove, name='cart_remove'),
path('remove/<int:product_id>/',views.cart_remove, name='cart_remove')
RS
Т
Т
url(r'^remove/(?P<product_id>\d+)/$', views.cart_remove, name='cart_remove'),
path('remove/<int:product_id>/',views.cart_remove, name='cart_remove')
O
D
name
, у allauth приложение называется account
O
name
, у allauth приложение называется account