Page not found (404)

Request Method: GET
Request URL: http://ptaco.net/gallery

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

  1. ^admin/
  2. ^accounts/
  3. ^ ^$ [name='home']
  4. ^ ^create/$ [name='create']
  5. ^ ^upload/?$ [name='upload']
  6. ^ ^random/$ [name='random']
  7. ^ ^vote/(?P<hash_id>[\w-]+)/?$ [name='vote']
  8. ^ ^process_vote/?$ [name='process_vote']
  9. ^ ^login/?$ [name='login']
  10. ^ ^list/?$ [name='list']
  11. ^ ^profile/?$ [name='profile']
  12. ^ ^report/?$ [name='ptco_report']
  13. ^ ^delete/?$ [name='ptco_delete']
  14. ^ ^update_choice_title/?$ [name='ptco_update_choice_title']
  15. ^ ^link_parser/?$ [name='ptco_link_parser']
  16. ^ ^set_language/(?P<lang_code>[\w-]+)$ [name='set_language']
  17. ^bot/
  18. ^api/v1/auth/
  19. ^api/
  20. ^api/?$
  21. ^media\/(?P<path>.*)$
  22. ^400/$
  23. ^403/$
  24. ^404/$
  25. ^500/$

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