I'm having issue with ``` urlpatterns = [ url(r'^webpush/', include('webpush.urls')) ] ``` I've got an `error name url is not defined` I can make it work using `re_path` like ``` urlpatterns = [ re_path(r'^webpush/', include('webpush.urls')) ] ```