Page not found (404)

Request Method: GET
Request URL: http://localhost:8000/ask/tag/usa

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

  1. ^/?$
  2. ^continent/(?P<continent_name>[\w _]+)/$
  3. ^country/$
  4. ^providers/$
  5. ^shop/$
  6. ^about/$
  7. ^all/$
  8. ^plans/(?P<country_name>[\w _]+)/$
  9. ^plans/(?P<country_name>[\w _]+)/(?P<provider_name>[\w _\-]+)/$
  10. ^blog/$
  11. ^blog/feed/$
  12. ^blog/view/(?P<slug>[^\.]+)/ [name='view_blog_post']
  13. ^blog/category/(?P<slug>[^\.]+)/ [name='view_blog_category']
  14. ^site_media/(?P<path>.*)$
  15. ^admin/doc/
  16. ^admin/
  17. ^databrowse/(.*)

The current URL, ask/tag/usa, 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.