I\'ve seen this error posted several times, but I can\'t find anyone using Django 2.0 and having the problem.
The problem cropped up when I tried to nest one app inside
You need to actually tell it what the namespace is.
Change this line:
path('users/', include('users.urls')),
to:
path('users/', include('users.urls', namespace="users")),
Read the documentation