Page not found (404)

Request Method: GET
Request URL: http://localhost:8000/wycieczki/28/

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

  1. admin/
  2. core/
  3. [name='index']
  4. wycieczka/<int:pk>/<str:slug> [name='wycieczka']
  5. wycieczka/<int:trip_pk>/<str:slug>/<int:event_pk>/rezerwuj [name='reservation']
  6. wycieczka/<int:trip_pk>/<str:slug>/<int:event_pk>/lista-rezerwowa [name='reserve_list']
  7. kraje/<int:pk> [name='kraj']
  8. wycieczki [name='wycieczki']
  9. region/<str:region_name> [name='region']
  10. kraje [name='kraje']
  11. kontakt [name='kontakt']
  12. szukaj [name='find']
  13. profil [name='profile']
  14. profil/edycja [name='profil-edycja']
  15. profil/zmiana-hasła [name='profil-zmiana-hasła']
  16. profil/<int:reservation_id> [name='rezygnacja']
  17. login [name='login']
  18. haslo [name='forget']
  19. newsletter [name='newsletter']
  20. rejestracja [name='register']
  21. doc/<int:trip_id> [name='doc']
  22. payment/<int:payment_id> [name='payment']
  23. potwierdzenie-platnosci/<str:id>/<str:hash>/ [name='potwierdzenie-platnosci']
  24. <slug:slug> [name='cms']
  25. ^media/(?P<path>.*)$
  26. ^static/(?P<path>.*)$

The current path, wycieczki/28/, 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.