How to Solve NameError: name 'Count' is not defined -- django

Solution: Import the 'Count' module

# Add the following line to the top of your code
from django.db.models import Count

 

For more information:
django Count