Page not found (404)

Request Method: GET
Request URL: https://coralridgetownhomes.com/en/contacts

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

  1. admin/
  2. en/ i18n/
  3. en/ [name='home']
  4. en/ about [name='about']
  5. en/ area [name='area']
  6. en/ developers [name='developers']
  7. en/ gallery [name='gallery']
  8. en/ available_units [name='available_units']
  9. en/ available_units/<slug>/ [name='available_units_detail']
  10. en/ contact [name='contact']
  11. en/ privacy-policy [name='privacy-policy']
  12. en/ terms [name='terms']
  13. en/ form_page_contact_us [name='form_page_contact_us']
  14. en/ sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  15. en/ robots.txt
  16. ^media/(?P<path>.*)$

The current path, en/contacts, 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.