What I am trying to do is to get a filter from Monday to Friday and then count the objects based on the filter. This is what I have so far:
def closed_by_count(request, template = 'count_closed_user.html'):
date = datetime.now()
week_1 = relativedelta(weeks=1)
closed_by_count = Created_Ticket.objects.filter(closed_by__username='lastname.firstname').filter(date_closed__gte = date - week_1).filter(date_closed__lt = date).count()
print closed_by_count
payload = {'closed_by_count': closed_by_count,}
return render_to_response(template, payload, context_instance=RequestContext(request))
It works, but not in the right manner, right now the start I can get to work is the current day. How would I start it from any Monday to Sunday (Weekly)? Instead of the current date, so when someone looks at the count of closed by username tickets, it would only fall on that week. I hope this makes sense.
Just find the last monday for the current week using the
datetime
module:Then you can run your query as follows:
These use naive datetime objects. You can use timezone aware objects by using: