Page not found (404)

Request Method: GET
Request URL: http://fotopokorny.cz/pages/services/

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

  1. admin/
  2. register/ [name='register']
  3. profile/ [name='profile']
  4. login/ [name='login']
  5. logout/ [name='logout']
  6. password-reset/ [name='password_reset']
  7. password-reset/done/ [name='password_reset_done']
  8. password-reset-confirm/<uidb64>/<token>/ [name='password_reset_confirm']
  9. password-reset-complete/ [name='password_reset_complete']
  10. [name='blog-home']
  11. user/<str:username> [name='user-posts']
  12. post/<int:pk>/ [name='post-detail']
  13. post/new/ [name='post-create']
  14. post/<int:pk>/update [name='post-update']
  15. post/<int:pk>/delete [name='post-delete']
  16. blog/ [name='blog_page']
  17. stayalive [name='alive']
  18. thermometer/ [name='thermometer']
  19. CV/ [name='curriculum_vitae']
  20. ^media/(?P<path>.*)$

The current path, pages/services/, 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.