Page not found (404)

“/code/media/honor.html” не существует
Request Method: GET
Request URL: http://localhost:8080/honor.html
Raised by: django.views.static.serve

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

  1. admin/
  2. ckeditor/
  3. [name='index']
  4. profile/<int:pk>/ [name='profile']
  5. calendar/ [name='calendar']
  6. goals/ [name='goals']
  7. leadership/ [name='leadership']
  8. documents/ [name='documents']
  9. protocols/ [name='protocols']
  10. regulations/ [name='regulations']
  11. studentsTournaments/ [name='students_tournaments']
  12. contacts/ [name='contacts']
  13. payment/ [name='payment']
  14. news/ [name='news_list']
  15. anti-doping/ [name='anti-doping']
  16. news/<int:pk>/ [name='current_news']
  17. tournaments/ [name='reports_list']
  18. tournaments/<int:pk>/ [name='current_report']
  19. results/ [name='results']
  20. statistic/ [name='statistic']
  21. rating/ [name='rating']
  22. api/parse_results/
  23. api/calendar/
  24. ^(?P<path>.*)$

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