Questions tagged [django-viewflow]

django-viewflow is for questions related to the viewflow library that provides workflow features for django web apps. For questions about the android viewflow library use the tag `viewflow`

Viewflow is a reusable workflow library for Django, a python-based web application framework.

135 questions
0
votes
1 answer

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

I have a typical workflow like below: Start -> Notify -> Task -> End Within the Notify step which sends out an email to someone need to perform the task, I want to include the url that goes directly to the "Task" assign page, is it possible? My…
James Lin
  • 25,028
  • 36
  • 133
  • 233
0
votes
1 answer

assign task no to the current user in viewflow

I have been using viewflow for a while, and I managed to create my process without any problem. But now I need someone to review the work from someone else. I don't want to create roles for that simple task, because I want everybody to be able…
0
votes
1 answer

viewflow: How can I disable long embeded list of data on default frontend screens?

I'm currently using viewflow frontend for the management part of our workflow and we're getting huge loading times on default views that have started to show just after we started using the system for testing purposes. Is there a param somewhere I…
SirML
  • 1
  • 1
0
votes
1 answer

Programmatically interact with workflows

i want to interact both from the material frontend and from python code with my workflow, in particular with a View. The workflow works properly with the material frontend, but i have some problem with programmatically interaction. I am able to…
0
votes
1 answer

Flow execution logging in django-vieflow

How can I track process/task execution in viewflow with logger? In the docs is mentioned: In case if you need to track some execution info or add logging, you can do it by extending viewflow.models.Task I could not find any example or more…
0
votes
0 answers

cannot find the process workflow - helloword in the workflow list

Hi i am new to django and trying to run the sample process in http://docs.viewflow.io/viewflow_quickstart.html but cannot find the process in the process list. env lib: process list is empty: flow.py from viewflow import flow from viewflow.base…
parvez
  • 1
  • 1
0
votes
1 answer

ViewFlow HelloWorldFlow programmatic trigger of StartActivation not saving process

I tried to trigger off a new HelloWorldFlow (demo from ViewFlow) Process instance programmatically instead of via CreateProcessView using the following code. However after executing the code, I find that the nothing is saved to the database. …
0
votes
2 answers

How to assign task to group in django viewfloe

Im looking for a solution to assign task to group in viewflow I Assigned task to user by .Assign(username='employee')
0
votes
2 answers

Correct way of overriding URL viewflow (Reverse for 'detail' not found. 'detail' is not a valid view function or pattern name.)

im stuck with an error of : Reverse for 'detail' not found. 'detail' is not a valid view function or pattern name. when i tried to override the AssignTaskView View. The rationale for doing so is to allow my user to reassign Tasks to others…
neowenshun
  • 860
  • 1
  • 7
  • 21
0
votes
2 answers

How to initiate a step back with editting functionality in viewflow

I'm currently trying to recreate this flow: So far, my flow only goes in 1 direction, there is no option for going back a step back, let's say Person 'b' spots a mistake keyed in by person 'a', I wish to be able to allow person 'b' to send the task…
neowenshun
  • 860
  • 1
  • 7
  • 21
0
votes
1 answer

Allowing Users to choose assignment View flow

I am currently working on a project with django and viewflow . I wish to allow the creator of a process to assign the task to other users , AKA allowing them to search and select from a drop down box. However there hasn't been much resources on how…
neowenshun
  • 860
  • 1
  • 7
  • 21
0
votes
1 answer

FlowRuntimeError viewflow django

Really need you guys help here! Im currently using viewflow to construct my workflow on a django project. I wish to integrate django-jsignature3 with django-viewflow , however i have met with extreme difficulty in doing so. The documentations for…
neowenshun
  • 860
  • 1
  • 7
  • 21
0
votes
1 answer

No transition from ASSIGNED viewflow

Previously i had an issue with viewflow as i was attempting to assign the process pk to a foreign key field. It seems like the issue has been resolved , however i am recieving another message error as seen below No transition from ASSIGNED It…
neowenshun
  • 860
  • 1
  • 7
  • 21
0
votes
1 answer

Additional functionality on the End node

There is a mixin, class AaTaskRelationMixin(object): aa_task_comlete_function = None that will be mixed to a flow. I want all flows in the end (when End node is activated) call a function in the attribute aa_task_complete_function
0
votes
1 answer

Inline formsets with django viewflow frontend

I can get an inline formset to work fine with django, but when trying to use viewflow and the built-in workflow frontend, I can't seem to get the inline form to work during the workflow. What is the proper way to reference the formset? Since the…
Worraps
  • 33
  • 5
1 2 3
8 9