Page not found (404)

Request Method: GET
Request URL: http://alexandriamed.ru/2/

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

  1. ^static/(?P<path>.*)$
  2. ^media/(?P<path>.*)$
  3. ^admin/
  4. ^admin_tools/
  5. ^$
  6. ^clinique/$
  7. ^services/$
  8. ^services/(?P<cur_category>\d+)/$
  9. ^services/\d+/(?P<id_service>\d+)/$
  10. ^equipment/$
  11. ^equipment/(?P<id_equipment>\d+)/$
  12. ^cosmetics/$
  13. ^cosmetics/(?P<cur_category>\d+)/$
  14. ^cosmetics/\d+/(?P<id_cosmetic>\d+)/$
  15. ^faq/$
  16. ^faq/(?P<cur_category>\d+)/$
  17. ^faq_add/$
  18. ^faq_add/(?P<doctor>\d+)/$
  19. ^news/$
  20. ^doctors/$
  21. ^doctors/(?P<id_doctor>\d+)/$
  22. ^address/$
  23. ^upload_img/$
  24. ^upload_file/$

The current URL, 2/, 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.