Page not found (404)

Archive not found
Request Method: GET
Request URL: https://bruit.tv/contact/
Raised by: website.views.archive

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

  1. admin/
  2. [name='home']
  3. sitemap.xml [name='sitemap']
  4. sitemap-<section>.xml [name='django.contrib.sitemaps.views.sitemap']
  5. feed/ [name='latest_posts_feed']
  6. page/<int:page_num>/ [name='home_pagination']
  7. <slug:type_slug>/<slug:country_slug>/<slug:cat_slug>/<int:id>-<slug:slug>/ [name='item_with_country_and_category']
  8. <slug:type_slug>/<slug:cat_slug>/<int:id>-<slug:slug>/ [name='item_single_cat']
  9. <slug:type_slug>/<slug:parent_cat_slug>/<slug:cat_slug>/<int:id>-<slug:slug>/ [name='item_two_cats']
  10. <slug:slug>/ [name='archive']

The current path, contact/, matched the last one.

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.