kelompok berdasarkan bulan dan tahun
Request.objects.extra({ "month": ExtractMonth('date_creation'),
"year": ExtractYear('date_creation') })
.values('month', 'year')
.annotate(total=Count('month'))
.values('month', 'year', 'total')
Crowded Chipmunk