问题 I need to count business days between two dates. In addition, I must also remove the days listed in a separate table (holidays). So far I have this code. It counts the days but does not remove the days from the separate table (holidays). class Holidays(models.Model): class Meta: ordering = ['date'] date = models.DateField(null=True, verbose_name='Date') class Situation(models.Model): class Meta: ordering = ['date_time_start'] date_time_start = models.DateTimeField(null=True, blank=False,