Skip to content

Commit

Permalink
Fix tasks not ordering by start time
Browse files Browse the repository at this point in the history
  • Loading branch information
Danyc0 committed Jan 31, 2024
1 parent b41d9f2 commit bfa0881
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions volunteers/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ def category_schedule_list(request):
@login_required
def task_schedule(request, template_id):
template = TaskTemplate.objects.filter(id=template_id)[0]
tasks = Task.objects.annotate(volunteers__count=Count("volunteer")).filter(template=template, edition=Edition.get_current()).order_by('date', 'start_time',
'end_time')
tasks = Task.objects.annotate(volunteers__count=Count("volunteer")).filter(template=template, edition=Edition.get_current()).order_by('date', 'start_time', 'end_time')
context = {
'template': template,
'tasks': SortedDict.fromkeys(tasks, {}),
Expand All @@ -133,8 +132,7 @@ def task_schedule(request, template_id):
@login_required
def task_schedule_csv(request, template_id):
template = TaskTemplate.objects.filter(id=template_id)[0]
tasks = Task.objects.annotate(volunteers__count=Count("volunteer")).filter(template=template, edition=Edition.get_current()).order_by('date', 'start_time',
'end_time')
tasks = Task.objects.annotate(volunteers__count=Count("volunteer")).filter(template=template, edition=Edition.get_current()).order_by('date', 'start_time', 'end_time')
response = HttpResponse(content_type='text/csv')
filename = "schedule_%s.csv" % template.name
response['Content-Disposition'] = 'attachment; filename=%s' % filename
Expand Down Expand Up @@ -171,7 +169,8 @@ def task_list(request):

current_tasks = Task.objects.annotate(
volunteers__count=Count("volunteer")).filter(
edition=Edition.get_current())
edition=Edition.get_current()).order_by('date', 'start_time', 'end_time')


if request.user.is_authenticated:
volunteer = Volunteer.objects.get(user=request.user)
Expand Down Expand Up @@ -340,7 +339,8 @@ def render_to_pdf(request, template_src, context_dict):
@login_required
def task_list_detailed(request, username):
context = {}
current_tasks = Task.objects.filter(edition=Edition.get_current())
current_tasks = Task.objects.filter(edition=Edition.get_current()).order_by('date', 'start_time', 'end_time')

# get the requested users tasks
context['tasks'] = current_tasks.filter(volunteers__user__username=username)
context['user'] = request.user
Expand Down Expand Up @@ -540,7 +540,8 @@ def profile_detail(request, username,
Instance of the currently viewed ``Profile``.
"""
user = get_object_or_404(get_user_model(), username__iexact=username)
current_tasks = Task.objects.filter(edition=Edition.get_current())
current_tasks = Task.objects.filter(edition=Edition.get_current()).order_by('date', 'start_time', 'end_time')


profile_model = get_profile_model()
try:
Expand Down

0 comments on commit bfa0881

Please sign in to comment.