Page not found (404)

Request Method: GET
Request URL: http://005.ru/register.html

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

  1. admin/
  2. category/<str:slug> [name='category_detail']
  3. century/<str:slug> [name='century_detail']
  4. <str:slug>/detail [name='author_detail']
  5. genre/<str:slug>/detail [name='genre_detail']
  6. genre/list [name='genre_list']
  7. author/list
  8. film/list
  9. film/<str:slug>/detail [name='film_detail']
  10. search
  11. century/<str:century>/category/<str:category> [name='category_century_detail']
  12. about.html/
  13. ^media/(?P<path>.*)$

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