Changes between Version 55 and Version 56 of NewbieMistakes
- Timestamp:
- Jul 22, 2013, 10:16:47 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewbieMistakes
v55 v56 403 403 404 404 405 == ====PageNotFound==========405 == PageNotFound == 406 406 407 407 Using the URLconf defined in wikicamp.urls, Django tried these URL patterns, in this order: 408 408 409 410 {{{ 409 411 ^wikicamp/(?P<page_name>[^/+])/edit/$ 410 412 ^wikicamp/(?P<page_name>[^/+])/save/$ 411 413 ^wikicamp/(?P<page_name>[^/+])/$ 414 }}} 415 412 416 413 417 The current URL, , didn't match any of these. 414 ========Solution=========== 418 419 ==== Solution ====