Re: Usage of django-model-utils TimeFramedModel manager

2013-08-15 Thread Bill Freeman
Maybe: Event.objects.filter(start=X, end=Y) Just guessing. On Thu, Aug 15, 2013 at 1:05 PM, Ogre wrote: > Hi all, > > I've a model defined as thus: > > from model_utils.models import TimeFramedModel > > class Event(TimeFramedModel): > title=models.CharField(max_length=100) > ... >

Usage of django-model-utils TimeFramedModel manager

2013-08-15 Thread Ogre
Hi all, I've a model defined as thus: from model_utils.models import TimeFramedModel class Event(TimeFramedModel): title=models.CharField(max_length=100) ... The docsare a bit slim on the ground for this