List views¶
- class viewflow.flow.views.AllProcessListView(*args, **kwargs)¶
Bases:
viewflow.flow.views.mixins.LoginRequiredMixin,viewflow.flow.views.mixins.FlowListMixin,django.views.generic.list.ListViewAll process instances list available for the current user.
- get_queryset()¶
All process instances list available for the current user.
- class viewflow.flow.views.AllTaskListView(*args, **kwargs)¶
Bases:
viewflow.flow.views.mixins.LoginRequiredMixin,viewflow.flow.views.mixins.FlowListMixin,django.views.generic.list.ListViewAll tasks from all processes assigned to the current user.
- get_queryset()¶
Filtered task list.
- class viewflow.flow.views.AllQueueListView(*args, **kwargs)¶
Bases:
viewflow.flow.views.mixins.LoginRequiredMixin,viewflow.flow.views.mixins.FlowListMixin,django.views.generic.list.ListViewAll unassigned tasks available for the current user.
- get_queryset()¶
Filtered task list.
- class viewflow.flow.views.AllArchiveListView(*args, **kwargs)¶
Bases:
viewflow.flow.views.mixins.LoginRequiredMixin,viewflow.flow.views.mixins.FlowListMixin,django.views.generic.list.ListViewAll tasks from all processes assigned to the current user.
- get_queryset()¶
All tasks from all processes assigned to the current user.
- class viewflow.flow.views.ProcessListView(**kwargs)¶
Bases:
viewflow.flow.views.mixins.FlowViewPermissionMixin,django.views.generic.list.ListViewList of processes available for the current user.
- get_context_data(**kwargs)¶
Context for a view.
- get_queryset()¶
Filtered process list.
- get_template_names()¶
List of template names to be used for an queue list view.
If template_name is None, default value is:
[<app_label>/<flow_label>/process_list.html, 'viewflow/flow/process_list.html']
- class viewflow.flow.views.TaskListView(**kwargs)¶
Bases:
viewflow.flow.views.mixins.FlowViewPermissionMixin,django.views.generic.list.ListViewList of tasks assigned to the current user.
- get_queryset()¶
List of tasks assigned to the current user.
- get_template_names()¶
List of template names to be used for an queue list view.
If template_name is None, default value is:
[<app_label>/<flow_label>/task_list.html, 'viewflow/flow/task_list.html']
- class viewflow.flow.views.QueueListView(**kwargs)¶
Bases:
viewflow.flow.views.mixins.FlowViewPermissionMixin,django.views.generic.list.ListViewList of unassigned tasks available for current user.
- get_queryset()¶
List of unassigned tasks available for current user.
- get_template_names()¶
List of template names to be used for an queue list view.
If template_name is None, default value is:
[<app_label>/<flow_label>/queue.html, 'viewflow/flow/queue.html']
- class viewflow.flow.views.ArchiveListView(**kwargs)¶
Bases:
viewflow.flow.views.mixins.FlowViewPermissionMixin,django.views.generic.list.ListViewList of task completed by the current user.
- get_queryset()¶
List of task completed by the current user.
- get_template_names()¶
List of template names to be used for an archive list view.
If template_name is None, default value is:
[<app_label>/<flow_label>/archive.html, 'viewflow/flow/archive.html']
