Page not found (404)

Request Method: GET
Request URL: http://2-3-4-5.net/user/Anastasia.B/

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

  1. ^$
  2. ^addcomment/$
  3. ^login/$
  4. ^logout/$
  5. ^user/(?P<username>[-_\w\d]+)/$
  6. ^admin/
  7. ^status/$ [name='adminstat']
  8. ^feed/rss/$
  9. ^feed/atom/$
  10. ^register/$ [name='registration_register']
  11. ^register/complete/$ [name='registration_complete']
  12. ^activate/complete/$ [name='registration_activation_complete']
  13. ^activate/(?P<activation_key>\w+)/$ [name='registration_activate']
  14. ^password_reset/$ [name='password_reset']
  15. ^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$ [name='password_reset_confirm']
  16. ^password_reset/done/$ [name='password_reset_done']
  17. ^reset/done/$ [name='password_reset_complete']
  18. ^learn/test/(?P<testid>\d+)/start/$
  19. ^learn/test/(?P<testid>\d+)/$
  20. ^learn/(?P<testid>\d+)/start/$
  21. ^learn/(?P<testid>\d+)/$
  22. ^learn/stat/(?P<testid>\d+)/$
  23. ^article/(?P<article>[-_\w\d/]*)/$
  24. ^admin/addtest/$ [name='addtest']
  25. ^questions/(?P<questionid>\d+)/$ [name='questions']
  26. ^rating/(?P<page>\d+)?/?$ [name='rating']
  27. ^uploads\/(?P<path>.*)$
  28. ^errorreport/reports/(?P<id>\d+)/$ [name='report']
  29. ^errorreport/reports/$ [name='reports']
  30. ^errorreport/

The current path, user/Anastasia.B/, 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.