pontoon/insights/utils.py [153:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        .annotate(peer_approved_sum=Sum("peer_approved"))
        .annotate(self_approved_sum=Sum("self_approved"))
        .annotate(rejected_sum=Sum("rejected"))
        .annotate(new_suggestions_sum=Sum("new_suggestions"))
        .annotate(
            pretranslations_chrf_score_avg=Avg(
                "pretranslations_chrf_score",
                filter=Q(pretranslations_chrf_score__isnull=False),
            )
        )
        .annotate(pretranslations_approved_sum=Sum("pretranslations_approved"))
        .annotate(pretranslations_rejected_sum=Sum("pretranslations_rejected"))
        .annotate(pretranslations_new_sum=Sum("pretranslations_new"))
        # Select month and values
        .values(
            "month",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pontoon/insights/utils.py [292:307]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        .annotate(peer_approved_sum=Sum("peer_approved"))
        .annotate(self_approved_sum=Sum("self_approved"))
        .annotate(rejected_sum=Sum("rejected"))
        .annotate(new_suggestions_sum=Sum("new_suggestions"))
        .annotate(
            pretranslations_chrf_score_avg=Avg(
                "pretranslations_chrf_score",
                filter=Q(pretranslations_chrf_score__isnull=False),
            )
        )
        .annotate(pretranslations_approved_sum=Sum("pretranslations_approved"))
        .annotate(pretranslations_rejected_sum=Sum("pretranslations_rejected"))
        .annotate(pretranslations_new_sum=Sum("pretranslations_new"))
        # Select month and values
        .values(
            "month",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



