Page not found (404)

Request Method: GET
Request URL: https://www.skyjoytravel.com/de/haeufig-gestellte-fragen

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

  1. admin/
  2. [name='home_page']
  3. about/ [name='about_page']
  4. contact/ [name='contact_page']
  5. package/ [name='package_page']
  6. packages/ [name='packages']
  7. hotels/ [name='hotels']
  8. resort/ [name='resorts']
  9. camps/ [name='camps']
  10. robots.txt/ [name='robot_view']
  11. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  12. terms-condition/ [name='terms_condition']
  13. packages/<str:city>/
  14. hotels/<str:city>/
  15. resort/<str:city>/
  16. camps/<str:city>/
  17. hotel/<str:name>/<int:id>/
  18. resort/<str:name>/<int:id>/
  19. camp/<str:name>/<int:id>/
  20. blog/ [name='blog_page']
  21. blog/<str:title>/<int:id>/
  22. <str:cty>/
  23. <str:name>/<int:id>/
  24. ^media/(?P<path>.*)$
  25. ^static/(?P<path>.*)$

The current path, de/haeufig-gestellte-fragen, 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.