Page not found (404)

Request Method: GET
Request URL: https://rastalavista.com/photologue/gallery/page/1/

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

  1. .*contact/
  2. ^photologue/ ^gallery/(?P<year>\d{4})/(?P<month>[0-9]{2})/(?P<day>\w{1,2})/(?P<slug>[\-\d\w]+)/$ [name='gallery-detail']
  3. ^photologue/ ^gallery/(?P<year>\d{4})/(?P<month>[0-9]{2})/(?P<day>\w{1,2})/$ [name='gallery-archive-day']
  4. ^photologue/ ^gallery/(?P<year>\d{4})/(?P<month>[0-9]{2})/$ [name='gallery-archive-month']
  5. ^photologue/ ^gallery/(?P<year>\d{4})/$ [name='pl-gallery-archive-year']
  6. ^photologue/ gallery/ [name='pl-gallery-archive']
  7. ^photologue/ [name='pl-photologue-root']
  8. ^photologue/ ^gallery/(?P<slug>[\-\d\w]+)/$ [name='pl-gallery']
  9. ^photologue/ gallerylist/ [name='gallery-list']
  10. ^photologue/ ^photo/(?P<year>\d{4})/(?P<month>[0-9]{2})/(?P<day>\w{1,2})/(?P<slug>[\-\d\w]+)/$ [name='photo-detail']
  11. ^photologue/ ^photo/(?P<year>\d{4})/(?P<month>[0-9]{2})/(?P<day>\w{1,2})/$ [name='photo-archive-day']
  12. ^photologue/ ^photo/(?P<year>\d{4})/(?P<month>[0-9]{2})/$ [name='photo-archive-month']
  13. ^photologue/ ^photo/(?P<year>\d{4})/$ [name='pl-photo-archive-year']
  14. ^photologue/ photo/ [name='pl-photo-archive']
  15. ^photologue/ ^photo/(?P<slug>[\-\d\w]+)/$ [name='pl-photo']
  16. ^photologue/ photolist/ [name='photo-list']
  17. admin/
  18. ^static/(?P<path>.*)$
  19. ^media/(?P<path>.*)$
  20. ^static/(?P<path>.*)$

The current path, photologue/gallery/page/1/, 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.