Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8001/wordpress/?p=1
Raised by: cms.views.details

Using the URLconf defined in config.urls, Django tried these URL patterns, in this order:

  1. ^$ [name='home']
  2. ^amenities/$ [name='amenities']
  3. ^disclaimer/$ [name='disclaimer']
  4. ^features/$ [name='features']
  5. ^gallery/$ [name='gallery']
  6. ^neighborhood/$ [name='neighborhood']
  7. ^privacy-policy/$ [name='privacy-policy']
  8. ^contact-us/$ [name='contact-us']
  9. ^floor-plans/$ [name='floor-plans']
  10. ^floor-plans/(?P<slug>[-\w]+)/$ [name='unit-type']
  11. ^admin/
  12. ^admin/docs/
  13. ^robots\.txt$ [name='home']
  14. ^thank-you/$ [name='thank-you']
  15. ^in-the-news/$ [name='in-the-news']
  16. ^media\/(?P<path>.*)$
  17. ^400/$
  18. ^403/$
  19. ^404/$ [name='page_not_found']
  20. ^500/$ [name='server_error']
  21. ^media\/(?P<path>.*)$
  22. ^ ^cms_wizard/
  23. ^ ^(?P<slug>[0-9A-Za-z-_.//]+)/$ [name='pages-details-by-slug']
  24. ^ ^$ [name='pages-root']

The current URL, /wordpress/, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.