diff --git a/apps/location/views/common.py b/apps/location/views/common.py index 963c0cae..d9968755 100644 --- a/apps/location/views/common.py +++ b/apps/location/views/common.py @@ -18,7 +18,7 @@ class CountryViewMixin(generics.GenericAPIView): class RegionViewMixin(generics.GenericAPIView): """View Mixin for model Region""" model = models.Region - queryset = models.Region.objects.all().order_by('name') + queryset = models.Region.objects.all().order_by('name', 'code') class CityViewMixin(generics.GenericAPIView):