i want to display objects in case insensitive order
for eg
class Organization(models.model):
name=models.CharField(max_length=50)
administrator = models.ForeignKey(User, blank=True,related_name = 'OrgAdmin')
types = models.ManyToManyField(OrganizationType,blank=True, null=True)
to display objects ordered by name
Organization.objects.all().order_by('name')
will display in case sensitive
soo what will be option for case insensitive order
how we can achieve this using model method