Page not found (404)

Request Method: GET
Request URL: https://black-tiger-advertising.co.uk/about-us/

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

  1. admin/
  2. [name='home']
  3. about [name='about']
  4. privacy-policy [name='privacy']
  5. services [name='services']
  6. portfolio [name='portfolio']
  7. contact [name='contact']
  8. form [name='form']
  9. ContactPageForm [name='contactPageForm']
  10. portfolio1/<int:page_number>/ [name='portfolio1']
  11. portfolio2/<int:page_number>/ [name='portfolio2']
  12. robots.txt
  13. ^media/(?P<path>.*)$

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