django 查询时间范围_django:基于时间范围的聚合查询
I have the following models, Art and ArtScore:class Art(models.Model):title = models.CharField()class ArtScore(models.Model):art = models.ForeignKey(Art)date = models.DateField(auto_now_add = True)amo...