Here is my code:
 phones = Customer.objects.filter(active=True).values('name')\
        .annotate(count = Count('phone',filter=Q(phone__model__icontains=model_list[0]))
        .annotate(count1 = Count('phone',filter=Q(phone__model__icontains=model_list[1]))
        .annotate(count2 = Count('phone',filter=Q(phone__model__icontains=model_list[2]))
        .annotate(count3 = Count('phone',filter=Q(phone__model__icontains=model_list[3]))
        .annotate(count4 = Count('phone',filter=Q(phone__model__icontains=model_list[4]))
    ........
html
{% if phones %}
    {% for phone in phones %}
    <tr>
        <td>{{ phone.name }}</td>
        <td>{{ phone.count  }}</td>
        <td>{{ phone.count1  }}</td>
        <td>{{ phone.count2  }}</td>
        <td>{{ phone.count3  }}</td>
        <td>{{ phone.count4  }}</td>
    </tr>
    {% endfor %}
{% enfif %}
My model_list still has many models. What should I do to simplify these using for loop? 
If my model_list has 100 models, this will be very complicated.
I've tried this:
for i in range(len(model_list)):
    phone= Customer.objects.filter(active=True).values('name')\
        .annotate(count = Count('phone',filter=Q(phone__model__icontains=model_list[i]))
html
{% if phones %}
{% for phone in phones %}
<tr>
    <td>{{ phone.name }}</td>
    <td>{{ phone.count  }}</td>
</tr>
{% endfor %}
{% endif %}
But the result is not what I want, because I only get one of the data.
For example :model_list[0]
 
     
     
    