Page not found (404)

Request Method: GET
Request URL: http://theswarg.org/list_user.php

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

  1. ^jet/
  2. ^dashboard/
  3. ^accounts/
  4. ^social/
  5. ^information/
  6. ^ ^$ [name='index']
  7. ^ ^urgent/$ [name='urgent']
  8. ^ ^recent/$ [name='recent']
  9. ^ ^trending/$ [name='trending']
  10. ^ ^explore/$ [name='explore']
  11. ^ ^nominee/(?P<nominee_id>\d+)/$ [name='detail']
  12. ^ ^nominee/(?P<nominee_id>\d+)/donate/$ [name='donate']
  13. ^ ^donated/$ [name='donated']
  14. ^ ^user_dashboard/$ [name='user-dashboard']
  15. ^ ^nominate/nomination/create/$ [name='nomination-create']
  16. ^ ^nominate/basic-info/(?P<nominee_id>\d+)/$ [name='basic-info']
  17. ^ ^nominate/contact-info/(?P<nominee_id>\d+)/$ [name='contact-info']
  18. ^ ^nominate/family-info/(?P<nominee_id>\d+)/$ [name='family-info']
  19. ^ ^nominate/institution-info/(?P<nominee_id>\d+)/$ [name='institution-info']
  20. ^ ^nominate/sponsorship-info/(?P<nominee_id>\d+)/$ [name='sponsorship-info']
  21. ^ ^nominate/add-attachment/(?P<nominee_id>\d+)/$ [name='add-attachment']
  22. ^ ^nominate/success/$ [name='nominate-success']
  23. ^ ^nominate/(?P<nominee_id>\d+)/delete/$ [name='delete']
  24. ^static\/(?P<path>.*)$
  25. ^media\/(?P<path>.*)$

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