Page not found (404)

Request Method: GET
Request URL: http://madaniyat.uz/ru/index.html

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

  1. ru/ admin/
  2. ru/ [name='home_template_view']
  3. ru/ post/ [name='post_list']
  4. ru/ post/<int:id> [name='post_detail']
  5. ru/ static/<int:id> [name='static_detail']
  6. ru/ application [name='application_form']
  7. ru/ contact [name='contact_view']
  8. ru/ person/ [name='person_list']
  9. ru/ person/<int:id> [name='person_detail']
  10. ru/ regions/ [name='regions-list']
  11. ru/ organization/ [name='organization_list']
  12. ru/ organization/<int:id> [name='organization_detail']
  13. ru/ event/ [name='event_list']
  14. ru/ event/<int:id> [name='event_detail']
  15. ru/ media/ [name='media_list']
  16. ru/ media/items/ [name='media_gallery_list']
  17. ru/ media/items/<int:id> [name='media_gallery_detail']
  18. ru/ statistics/ [name='statistics_template']
  19. ru/ search/ [name='search_template']
  20. ru/ album/ [name='album_list']
  21. ru/ album/<int:id> [name='album_detail']
  22. ru/ api/typo-report [name='typo_report_api']
  23. ru/ votes/<int:poll_id>/ [name='vote']
  24. ru/ polls/<int:poll_id>/ [name='poll_view']
  25. ru/ result/<int:poll_id>/ [name='result']
  26. ckeditor/
  27. rosetta/
  28. captcha/
  29. ^static/(?P<path>.*)$
  30. ^media/(?P<path>.*)$

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