Как устранить эту ошибку «'password_reset' не является зарегистрированным пространством имен в rest api django» - PullRequest
1 голос
/ 18 июня 2020

введите здесь описание изображения

hi i am implementing password-reset feature on rest_API using `django_rest_passwordreset` library.but while testing end points its giving the following error:

NoReverseMatch в / api / accounts / password_reset / reset-password 'password_reset' не является зарегистрированным пространством имен

please check the code below:


from django.urls import path,include
from account.api.views import SignupApiView
from account.api.views import UserCreationView
from account.api.views import ProfileView,EnableDisableUserView
from rest_framework.authtoken.views import obtain_auth_token



app_name = 'account'

urlpatterns = [
    path("signup",SignupApiView.as_view(),name="signup"),
    path("create_user",UserCreationView().as_view(),name="create_user"),
    path("profile/<int:pk>",ProfileView.as_view(),name="profile"),
    path("disable_users/<slug:slug>",EnableDisableUserView.as_view()),
    path("disable_users/<int:pk>",EnableDisableUserView.as_view(),name="disable"),
    path("login",obtain_auth_token,name="login"),
    path('password_reset/', include('django_rest_passwordreset.urls', namespace='password_reset')),#this is where i am getting the error
]
...