Page not found (404)

Request Method: GET
Request URL: https://fernandofm.pythonanywhere.com/single-instructor

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

  1. admin/
  2. login/ [name='login']
  3. register/ [name='register']
  4. api/check_score [name='check_score']
  5. <int:id> [name='take_quiz']
  6. api/<id> [name='api_question']
  7. update_item/ [name='update_item']
  8. cart/ [name='cart']
  9. profile/ [name='profile']
  10. checkout/ [name='checkout']
  11. barra/ [name='barra']
  12. <int:id>/aulas/ [name='aulas']
  13. aulas1/<int:id>/<slug:slug>/ [name='aulas1']
  14. [name='home']
  15. <int:id>/course_detail/ [name='course_detail']
  16. quienes_somos/
  17. Aula_Virtual/ [name='miscursos']
  18. cursos/ [name='cursos']
  19. certificados/ [name='certificados']
  20. comentario/ [name='comentarios']
  21. bibliografia/ [name='bibliografia']
  22. nuevas_tendencias/
  23. cerrar/ [name='cerrar']
  24. comentarios/ [name='comentario']
  25. ckeditor/
  26. ^ ckeditor /
  27. ^(?P<id>\d+)/$ [name='detail']
  28. ^(?P<postid>\d+)/preference/(?P<userpreference>\d+)/$ [name='postpreference']
  29. postpreference_url/<id>/ [name='postpreference']
  30. detail_post_view_url/<id>/ [name='detail_post_view']
  31. oauth/
  32. ^ ratings /
  33. ^media/(?P<path>.*)$
  34. ^static/(?P<path>.*)$
  35. ^media/(?P<path>.*)$
  36. ^static/(?P<path>.*)$

The current path, single-instructor, 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.