1👍
✅
Both of your url’s have a \
in them so you are escaping the opening [
bracket, you just need to remove those slashes.
url(r'^user/area/decline/(?P<userid>[0-9]+)/$', views.DeclineUser),
url(r'^user/area/approve/(?P<userid>[0-9]+)/$', views.ApproveUser),
Source:stackexchange.com