Changes between Version 46 and Version 47 of NewbieMistakes


Ignore:
Timestamp:
May 22, 2012, 5:47:59 AM (12 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewbieMistakes

    v46 v47  
    358358MyRandNum = models.CharField(max_length=4, default=lambda:random.randint(1000,9999))
    359359}}}
     360
     361
     362======PageNotFound==========
     363
     364Using the URLconf defined in wikicamp.urls, Django tried these URL patterns, in this order:
     365
     366    ^wikicamp/(?P<page_name>[^/+])/edit/$
     367    ^wikicamp/(?P<page_name>[^/+])/save/$
     368    ^wikicamp/(?P<page_name>[^/+])/$
     369
     370The current URL, , didn't match any of these.
     371========Solution===========
Back to Top