Page not found (404)

Request Method: GET
Request URL: http://loanaway-com-dev37.azurewebsites.net/privacy/terms

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

  1. ^admin/
  2. ^ckeditor/
  3. ^loans/$ [name='service_list']
  4. ^loans/(?P<name>[a-zA-Z0-9_\-]+)/$ [name='service_details']
  5. ^loans/(?P<parent_name>[a-zA-Z0-9_\-]+)/(?P<name>[a-zA-Z0-9_\-]+)/$ [name='service_details']
  6. ^faq/$ [name='faq_list']
  7. ^feedback/$ [name='feedback']
  8. ^blog/$ [name='blog']
  9. ^infocenter/$ [name='infocenter']
  10. ^infocenter-(?P<url>[a-zA-Z0-9_\-]+)/$ [name='infocenter_details']
  11. ^blog/(?P<name>[a-zA-Z0-9_\-]+)/$ [name='blog_section']
  12. ^blog/(?P<name>[a-zA-Z0-9_\-]+)/(?P<url>[a-zA-Z0-9_\-]+)/$ [name='blog_details']
  13. ^infographs/$ [name='infographics_views']
  14. ^infographs/(?P<url>[a-zA-Z0-9_\-]+)/$ [name='infographics_details']
  15. ^video/$ [name='video_list']
  16. ^video/(?P<url>[a-zA-Z0-9_\-]+)/$ [name='video_details']
  17. ^testimonials/$ [name='testimonials_list']
  18. ^$ [name='index']
  19. ^equity/$ [name='index_equity']
  20. ^(?P<name>[a-zA-Z0-9_\-]+)/$ [name='page_details']
  21. ^robots\.txt$ [name='robots_txt']
  22. ^(?P<name>[a-zA-Z0-9_\-]+)\.html [name='static_html']
  23. ^sitemap\.xml$
  24. ^sitemap-(?P<section>\w+)\.xml$ [name='django.contrib.sitemaps.views.sitemap']
  25. ^static/(?P<path>.*)$
  26. ^media/(?P<path>.*)$
  27. ^static/(?P<path>.*)$

The current path, privacy/terms, 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.