As was mentioned in comments, probably aggregation results are empty. If that's a case, you can handle this situation by doing this:
Dailyw.objects.aggregate(Sum('results'))['results__sum'] or 0
, then in the template you'll see a value (zero) instead of black space.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…