diff --git a/atdb/taskdatabase/templates/taskdatabase/index.html b/atdb/taskdatabase/templates/taskdatabase/index.html
index cc6073b07ca5d3be6f9cd8835044bb6e8f80375e..9ae92308e6ac796988456db8ae8ee038389dec1b 100644
--- a/atdb/taskdatabase/templates/taskdatabase/index.html
+++ b/atdb/taskdatabase/templates/taskdatabase/index.html
@@ -31,7 +31,7 @@
             {% include 'taskdatabase/pagination.html' %}
         </div>
     </div>
-    <p class="footer"> Version 4 Aug 2023
+    <p class="footer"> Version 7 Aug 2023
 </div>
 
 {% include 'taskdatabase/refresh.html' %}
diff --git a/atdb/taskdatabase/views.py b/atdb/taskdatabase/views.py
index bbe98330e2d41bc89a1ee8f4c36bb0c57e48cbde..ec5a0ecbef48dbcbf3b3048749f56ed2f3154156 100644
--- a/atdb/taskdatabase/views.py
+++ b/atdb/taskdatabase/views.py
@@ -955,7 +955,7 @@ class ConfigurationDetailsViewAPI(generics.RetrieveUpdateDestroyAPIView):
 # example: /atdb/job/
 class JobListViewAPI(generics.ListCreateAPIView):
     model = Job
-    queryset = Job.objects.all()
+    queryset = Job.objects.all().order_by('id')
     serializer_class = JobSerializer
 
     filter_backends = (filters.DjangoFilterBackend,)