Viewflow:AllProcessListView return 空

Viewflow: AllProcessListView return empty

我正在尝试在我的项目中使用视图流,但我在使用以 "All" 开头的视图(AllProcessListView、AllQueueListView、ecc..)时遇到了一些问题。 我为他们创建了一些自定义模板,但他们总是 return 我空的查询集,即使流程的特定视图显示正确的结果。有什么帮助吗? 这是我的 url 设置:

url(r'^flow_processes', AllProcessListView.as_view(), name='flow_processes'),
url(r'^flow_queues', AllQueueListView.as_view(), name='flow_queues'),

AllProcessListView 需要用信息进行实例化 类 如何映射到 url 配置中的 django url 命名空间 ex:

https://github.com/viewflow/viewflow/blob/57eafb964c0d599fba239144e02f739c8c91bb60/tests/test_views_list.py#L14

views.AllProcessListView.as_view(ns_map={ListViewTestFlow: 'listviewtest'})