Page not found (404)

Request Method: GET
Request URL: http://viveweb.evidagroup.es/users

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

  1. ^admin/
  2. ^$ [name='index']
  3. ^vivencias/$ [name='portada']
  4. ^detalle/(?P<id>[0-9]+)$ [name='detalleind']
  5. ^perfil/(?P<id>[0-9]+)$ [name='perfil']
  6. ^perfil/detalle/(?P<id>[0-9]+)$ [name='detalleperfil']
  7. ^miperfil/$ [name='miperfil']
  8. ^categorias/$ [name='categorias']
  9. ^categoria/(?P<id>[0-9]+)$ [name='categoria']
  10. ^crear/$ [name='crearVivencia']
  11. ^registro/$ [name='accounts.registro']
  12. ^login/$ [name='accounts.login']
  13. ^logout/$ [name='accounts.logout']
  14. ^coincidencias/$ [name='coincidencias']
  15. ^coincidencias/detalle/(?P<id>[0-9]+)$ [name='detallecon']
  16. ^misvivencias/$ [name='misvivencias']
  17. ^misvivencias/modificar/(?P<id>[0-9]+)$ [name='modificar']
  18. ^misvivencias/eliminar/(?P<id>[0-9]+)$ [name='eliminar']
  19. ^misvivencias/detalle/(?P<id>[0-9]+)$ [name='detalle']
  20. ^static/(?P<path>.*)$
  21. ^media/(?P<path>.*)$

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