i find the answer and i want to share with some pepole maybe stuck like me :
from django.db.models import Prefetch
products = products.filter(available=True).prefetch_related(
Prefetch('colors', queryset=ProductColor.objects.order_by('-quantity'))
)
fix the problem