I am creating a web based application in which i required to get the list of all registered users in template way. I am using the django.contrib.auth model to manage user database with no groups. I am not able to find out any method in https://docs.djangoproject.com/en/dev/topics/auth/ which return the list of all user in views.py
Share
Pass the the appropriate queryset to your template:
Or if this is something you need for all templates, write a template context processor and add it there.