Page not found (404)

Request Method: GET
Request URL: https://pos-druk.pl/kontakt.html

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

  1. api-auth/
  2. admin/
  3. accounts/
  4. [name='index']
  5. produkty/<slug:category_slug>/ [name='product_list_by_category']
  6. produkt/<str:product_code>/ [name='product_detail']
  7. add_to_cart/<int:product_id>/ [name='cart_add']
  8. remove_cart/<int:product_id>/ [name='cart_remove']
  9. o-nas/ [name='about_us']
  10. checkout/ [name='checkout']
  11. wyszukaj/ [name='search']
  12. ^media/(?P<path>.*)$
  13. offer/
  14. api/
  15. ^media/(?P<path>.*)$

The current path, kontakt.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.