Page not found (404)

Request Method: GET
Request URL: http://www.fifprosudamerica.org/social/1396
Raised by: web.views.social

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

  1. [name='home']
  2. noticias [name='noticias']
  3. noticias/<int:page> [name='noticias']
  4. noticias/categoria/<slug:slug> [name='noticias_categoria']
  5. noticias/categoria/<slug:slug>/<int:page> [name='noticias_categoria']
  6. noticias/miembro/<slug:slug> [name='noticias_miembro']
  7. noticias/miembro/<slug:slug>/<int:page> [name='noticias_miembro']
  8. noticias/<slug:slug> [name='noticia']
  9. miembro/<slug:slug> [name='miembro']
  10. miembros [name='miembros']
  11. social/miembro/<slug:slug>/<int:page> [name='social_miembro']
  12. social/<int:pk> [name='social']

The current path, social/1396, matched the last one.

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.