Page not found (404)

Request Method: GET
Request URL: http://localhost:8002/matrizes/

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

  1. ^grappelli/
  2. ^admin/
  3. ^ ^$ [name='home']
  4. ^ ^historia$ [name='historia']
  5. ^ ^comportamento$ [name='comportamento']
  6. ^ ^standart$ [name='standart']
  7. ^ ^cuidados$ [name='cuidados']
  8. ^ ^matrizes$ [name='matrizes']
  9. ^ ^matriz/(?P<ident>[\w_-]+)$ [name='matriz']
  10. ^ ^matriz/titulos/(?P<ident>[\w_-]+)$ [name='matriz_titulos']
  11. ^ ^matriz/adicionais/(?P<ident>[\w_-]+)$ [name='matriz_adicionais']
  12. ^ ^padreadores$ [name='padreadores']
  13. ^ ^ninhada$ [name='ninhada']
  14. ^ ^album$ [name='album']
  15. ^ ^instalacoes$ [name='instalacoes']
  16. ^ ^cotacao$ [name='cotacao']
  17. ^ ^contato$ [name='contato']
  18. ^ ^cadastro$ [name='cadastro']
  19. ^ ^cadastro-simplificado$ [name='cadastro_simplificado']
  20. ^ ^premiacoes$ [name='premiacoes']
  21. ^ ^premiacoes/(?P<id>[\d]+)$ [name='premiacoes']
  22. ^ ^premiacoes/melhor_animal_ano_a_ano$ [name='melhor_animal_ano_a_ano']
  23. ^ ^titulos$ [name='titulos']
  24. ^ ^premiacoes/melhores_do_ano/(?P<ano>[\d]+)$ [name='melhores_do_ano']
  25. ^ ^premiacoes/best_in_show$ [name='best_in_show']
  26. ^$ [name='index']
  27. ^media/(?P<path>.*)$
  28. ^static\/(?P<path>.*)$

The current URL, matrizes/, 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.