Page not found (404)

Request Method: GET
Request URL: https://amandabergantino.com/mini/11

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

  1. ^admin/
  2. ^$ [name='home']
  3. ^gallery/$ [name='gallery']
  4. ^gallery/(?P<gallery_id>\d+)/$ [name='gallery_filter']
  5. ^feed/$ [name='feed']
  6. ^about/$ [name='about']
  7. ^school/$ [name='school']
  8. ^schools/$ [name='schools']
  9. ^contact/$ [name='contact']
  10. ^investment/$ [name='investment']
  11. ^products/$ [name='products']
  12. ^admin/order/(\d+)$ [name='order']
  13. ^blog/$ [name='blog']
  14. ^blog/category/(\d+)$ [name='blog_category']
  15. ^blog/comment/(\d+)$ [name='blog_comment']
  16. ^blog/(\d+)/([a-z-_A-Z0-9]+)$ [name='blog_entry']
  17. ^clients/$ [name='clients']
  18. ^clients/home/$ [name='client_home']
  19. ^clients/logout/$ [name='client_logout']
  20. ^clients/sessions/view/(\d+)$ [name='client_view_session']
  21. ^specials/$ [name='specials']
  22. ^specials/reserve/(\d+)$ [name='special_reserve']
  23. ^(?P<slug>[A-Za-z0-9_-]+)/$ [name='special_view']

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