Page not found (404)

Request Method: GET
Request URL: http://raquel-ia.net:8007/terms/

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

  1. admin/
  2. [name='index']
  3. work/ [name='work']
  4. product/<int:product_id>/<slug:product_slug>/ [name='product_detail']
  5. cart/ [name='show_cart']
  6. checkout/ [name='checkout']
  7. process-payment/ [name='process_payment']
  8. payment-done/ [name='payment_done']
  9. payment-cancelled/ [name='payment_cancelled']
  10. ^paint/$ [name='paint']
  11. ^collaboration/$ [name='collaboration']
  12. ^about/$ [name='about']
  13. ^contact/$ [name='contact']
  14. paypal/
  15. ^media\/(?P<path>.*)$

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