Why Django does not recognize my url?
my urls.py
from django.urls import path
from home.views import homePageView, activateUser
urlpatterns = [
path('',homePageView.as_view(),name='home'),
path('activate/([a-zA-Z0-9]{15})/$', act...
asked by
26.06.2018 / 19:27