Page not found (404)

Request Method: GET
Request URL: http://tbcenter.kg/ru/info/photo-gallery/4/
Raised by: info.views.PhotoGalleryDetailView

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

  1. admin/
  2. ^ckeditor/
  3. ^i18n/
  4. rosetta/
  5. ^static/(?P<path>.*)$
  6. ru/ [name='homepage']
  7. ru/ <int:pk>/<str:title>/ [name='homepage']
  8. ru/ page/detail<int:pk>/ [name='multi_page_detail']
  9. ru/ page/<int:pk>/ [name='multi_page']
  10. ru/ info/ [name='news_list']
  11. ru/ info/ <int:pk> [name='news_detail']
  12. ru/ info/ library/<int:pk> [name='library']
  13. ru/ info/ about-us/ [name='about_us']
  14. ru/ info/ <int:pk>/ [name='similar_page']
  15. ru/ info/ contact/ [name='contact']
  16. ru/ info/ video-gallery/ [name='video_gallery']
  17. ru/ info/ photo-gallery/ [name='photo_gallery']
  18. ru/ info/ photo-gallery/<int:pk>/ [name='photo_gallery_detail']

The current path, ru/info/photo-gallery/4/, 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.