Нужна помощь в добавлении графа в модель queryset

Я пытаюсь добавить подсчет в следующий код кверисета в django.

query.communityRating = int(query.communityRating) + value          
   query.communityCount = query.communityCount + 1          
    query.save()
    
and then when we pass the score, to the template 

 if query.communityRating != 0:
        comRating = query.communityRating / query.communityCount
    else:
        comRating = query.communityRating
Вернуться на верх