diff --git a/dashboard/views.py b/dashboard/views.py index 5a713099..b67c59c3 100644 --- a/dashboard/views.py +++ b/dashboard/views.py @@ -29,7 +29,8 @@ class Dashboard(LoginRequiredMixin, TemplateView): def get_context_data(self, **kwargs): context = super(Dashboard, self).get_context_data(**kwargs) - context['objects'] = Child.objects.all().order_by('last_name') + context['objects'] = Child.objects.all() \ + .order_by('last_name', 'first_name', 'id') return context