On Wednesday 11 March 2015 22:56:15 inoyon artlover KLANGRAUSCH wrote: > > url(r'^(P?<slug>\w+)$', views.ProductView.as_view()), > > Where is the mistake here????????????
That should be
url(r'^(?P...
The question mark before the P
In the future, please direct questions about using Django to the django-users
mailing list. This list is for discussions about the development of Django
itself.
Thanks,
Shai.
