Tagged Questions
0
votes
1answer
152 views
Django - Prevent date range overlapping
class Session(models.Model):
tutor = models.ForeignKey(User)
start_time = models.DateTimeField()
end_time = models.DateTimeField()
What is the best way to always prevent start_time from ...
1
vote
3answers
379 views
django aggregation to lower resolution using grouping by a date range
horrible title, but let me explain: i've got this django model containing a timestamp (date) and the attribute to log - f.e. the number of users consuming some ressource - (value).
class ...
1
vote
1answer
178 views
Python range() builtin function, erm… malfunctioning with Django
What, if anything, is wrong with this line of python code:
daterange = [begin + timedelta(n) for n in range((end - begin).days)]
Where begin and end are datetime.date objects with valid values.
...
1
vote
1answer
649 views
Django model timerange filtering method
I saw the next two method on old question here but it is not clear for me what is the difference between:
{'date_time_field__range': (datetime.datetime.combine(date, datetime.time.min),
...