django-viewflow 为下一步获取任务分配 url?

django-viewflow get task assign url for the next step?

我有一个典型的工作流程如下:

Start -> Notify -> Task -> End

在向需要执行任务的人发送电子邮件的通知步骤中,我想包含直接转到“任务”分配页面的 url,这可能吗?

我的问题是,在通知步骤中,我认为任务步骤尚未在数据库中创建,因此无法生成 url。

更新:

感谢您的回答,发布生成分配的代码url:

def handler(self, activation):
    process = activation.process
    path = reverse('viewflow:connect:new_request/flow/newrequest:{}__assign'.format(activation.flow_task.name), args=[process.pk, activation.task.pk])

您可以将其添加为 flow.View(...).onCreate handler

class MyFlow(Flow):
    approve = flow.View(...).OnCreate(this.on_approve_created)

    def on_approve_created(self, activation):
        if activation.task.owner:
            send_mail(
                'View task assigned to you','Here is the message.',
                'from@example.com', [activation.task.owner.email]
             )