Page not found (404)

Request Method: GET
Request URL: http://madaniyat.uz/en/post/en/static/16

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

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

The current path, en/post/en/static/16, 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.