Page not found (404)

Request Method: GET
Request URL: http://www.cristinaferraz.com.br/services.html

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

  1. ^admin/doc/
  2. ^admin/
  3. ^robots\.txt$
  4. ^sitemap\.xml$
  5. ^$ [name='home']
  6. ^sobre/$ [name='about']
  7. ^servicos/$ [name='services']
  8. ^contato/$ [name='contact']
  9. ^projetos/$ [name='projects']
  10. ^projetos/(?P<pk>[0-9]+)/$ [name='project_detail']
  11. ^projetos/categoria/(?P<category>[0-9]+)/$ [name='project_category']
  12. ^uploads/(.*)$
  13. ^static\/(?P<path>.*)$

The current URL, services.html, 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.