I have empty queryset of model Student
students = Students.objects.all()
If the above queryset is empty, then how can i get the mo
You can do:
students.model.__name__ >>> `Students`