Page not found (404)

Request Method: GET
Request URL: https://tviv.ru/contact/

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

  1. admin/
  2. accounts/
  3. comments/
  4. [name='home']
  5. sitemap.xml [name='sitemap']
  6. sitemap-<section>.xml [name='django.contrib.sitemaps.views.sitemap']
  7. page/<int:page_number>/ [name='home-pagination']
  8. rate/<int:show_id>/ [name='rate_show']
  9. show/<int:id>-<str:slug>/ [name='show']
  10. accounts/profile/ [name='profile']
  11. <str:type>/<str:slug>/ [name='archive']
  12. <str:type>/<str:slug>/page/<int:page_number>/ [name='archive']
  13. syspage/<int:id>/<slug:slug>/ [name='syspage']
  14. search/ [name='search_shows']
  15. toggle-subscription/ [name='toggle_subscription_status']
  16. accounts/login/ [name='login_popup']
  17. accounts/signup/ [name='signup_popup']
  18. accounts/confirm-email/<str:key>/ [name='account_confirm_email']
  19. ^static/(?P<path>.*)$

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