8 lines
212 B
Python
8 lines
212 B
Python
from django.db import models
|
|
|
|
|
|
class WorkflowManager(models.Manager):
|
|
def launch_for(self, document):
|
|
for workflow in document.document_type.workflows.all():
|
|
workflow.launch_for(document)
|