[Answer]-Django manytomanyfield fetch unique countryname

1👍

Converting my comment to an answer. use distinct after all() method.

>>DeliveryMethod.objects.all().distinct().values_list('country__name')

Leave a comment