[Answered ]-Django: django.urls.exceptions.NoReverseMatch: Reverse for 'view_name' not found. 'view_name' is not a valid view function or pattern name

1👍

You should give the path that name:

app_name = 'users'

urlpatterns = [
    # …
    path('create/', views.create, name='create'),
    # …
]

Leave a comment