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
1
vote
1 answer

how to configure viewflow filter?

i have viewflow install on my local computer, but i don't have the filter like a demo online: http://demo.viewflow.io Follow the full tutorial on the quick start but Anyone know how to activate it?
1
vote
1 answer

django-viewflow : No module named site

i'm trying to develop a function in my project using django-vieflow. I try to understand the whole flow using this tutorial ViewFlow-HelloWorld But, when i try to makemigrations i got and error saying No module named site. What did i miss?
MunirohMansoor
  • 355
  • 1
  • 10
  • 19
1
vote
1 answer

ViewFlow and django-guardian

I want to make use of django-guardian's object permissions and grant specific rights for specific users to one or more Django users. I have tried to add some permissions to my Process class like this: class TestProcess(Process): title =…
Hi Hi
  • 366
  • 4
  • 20
1
vote
0 answers

Python: Cannot add the ViewFlow app to the list of installed apps

Could you you please help me to add the ViewFlow library (http://docs.viewflow.io/quick_start.html) to the the list of installed apps in Django? I use Anaconda with Python. Django and ViewFlow have been already installed.
Alex Bal
  • 21
  • 1
1
vote
0 answers

How to start a Flow with user subscription

We are using Django-allauth for user subscription management with an optional email confirmation and few social provider (facebook, google, etc). We wanted to start a flow when the confirmation email in sent. The entire flow doesn't use views as it…
1
vote
1 answer

How to include For loop in Django-Viewflow Process

To create a process validation, I'm implementing a workflow using the "Django-Viewflow" library(http://viewflow.io/). All works fine when i assign each task to a specific validator(user) with a fixed number of validation levels. My problem is: how…
Sam
  • 523
  • 2
  • 5
  • 14
1
vote
1 answer

viewflow.io: What is the recommended pattern to go a step back in a flow?

With the ViewFlow library (see http://viewflow.io/), I'm looking at the following use case: While stepping through a Flow, what is the recommended pattern to step back? Right now I only found out how to step forward (which is the default behaviour).…
Dirk
  • 427
  • 1
  • 6
  • 16
1
vote
1 answer

viewflow.io: Is there a way to have 'subflows'?

With the ViewFlow library (see http://viewflow.io/), is it possible to have dynamic 'subflows'? The use case: I have a static process for checking out a basket of products in a webshop. The first step in the process is to look into the basket and…
Dirk
  • 427
  • 1
  • 6
  • 16
0
votes
1 answer

Overriding django viewflow views to return JSON

Probably something basic, but cannot seem to figure it out. I am trying to implement a custom UI for viewflow where the various tasks are displayed as modals. I have managed to get the initial start view to display in a modal and to use AJAX to…
dj.bettega
  • 117
  • 1
  • 1
  • 11
0
votes
1 answer

Is it possible to get the tasks whose status changes in django viewflow?

HI is it possible to get the tasks whose status changed on performing a task in django-viewflow?
0
votes
0 answers

Django viewflow running queries in a custom node

I am trying to adapt the Viewflow Dynamicsplit example The objective is to split approvals of an Order based on OrderLines and to assign them to the appropriate approver. It seems that this should be possible as there seems to be a possibility…
dj.bettega
  • 117
  • 1
  • 1
  • 11
0
votes
0 answers

How to "save and continue editing" a task in django-viewflow

I'm building an approval workflow using django-viewflow and django-material. A key component of the workflow is for the end user to fill in a lengthy form and eventually submit it for review and approval. What I want My users will expect to be able…
florianm
  • 323
  • 4
  • 10
0
votes
1 answer

How to customise task context (process_data cards) in django-viewflow

What I want I'm building an approval workflow using django-viewflow and django-material. The individual tasks are rendered as a main form with context on a very narrow column on the right-hand side. I want to change the layout so that the task…
florianm
  • 323
  • 4
  • 10
0
votes
2 answers

Django-viewflow query all assigned to user tasks

How to query django-viewflow for all tasks assigned to user? Probably viewflow.managers.TaskQuerySet inbox() is right place. But how to invoke it? Alternatively how to query users task from viewflow.models.Process object?
0
votes
1 answer

Not able to get flow link in my viewflow application

I'm using viewflow engine in my django project to render the workflow in UI.On running the local server I'm not able to see the "flow" link on left bottom part of the screen which is used to see the graphical representation of workflow.Am I missing…
1 2 3
8 9