diff --git a/hypha/apply/funds/views.py b/hypha/apply/funds/views.py index c9862666461fce4488217dd8e8eb3aa7a59acf2e..0b60e99d2215cff882e1b5de057d6e0c91b32f74 100644 --- a/hypha/apply/funds/views.py +++ b/hypha/apply/funds/views.py @@ -1117,6 +1117,7 @@ class AdminSubmissionDetailView(ActivityContextMixin, DelegateableView, DetailVi self.model.objects.filter(user=self.object.user) .current() .exclude(id=self.object.id) + .order_by("-submit_time") ) if self.object.next: other_submissions = other_submissions.exclude(id=self.object.next.id)