Re: Don't understand regex-urls and DetailView...

2015-03-11 Thread inoyon artlover KLANGRAUSCH
I got it! :D (?P\w+) and NOT (P? . Am Mittwoch, 11. März 2015 21:57:34 UTC+1 schrieb inoyon artlover KLANGRAUSCH: > > I don't understand why this doesn't work and smashes an > > '*The current URL, lighter, didn't match any of these.'* > > my models.py > > class ShopList(models.Model): >

Don't understand regex-urls and DetailView...

2015-03-11 Thread inoyon artlover KLANGRAUSCH
I don't understand why this doesn't work and smashes an '*The current URL, lighter, didn't match any of these.'* my models.py class ShopList(models.Model): name = models.CharField(max_length=100, null=True, blank=True) description = models.CharField(max_length=100, null=True, blank=True