Retrieve tasks in order they are on the workflow

pull/6257/head
Karl Hobley 2020-02-21 09:23:40 +00:00 zatwierdzone przez Matt Westcott
rodzic 35cb4ab0f5
commit 623ea70ffc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -2699,7 +2699,7 @@ class Workflow(ClusterableModel):
@property
def tasks(self):
return Task.objects.filter(workflow_tasks__workflow=self)
return Task.objects.filter(workflow_tasks__workflow=self).order_by('workflow_tasks__sort_order')
@transaction.atomic
def start(self, page, user):