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 flow in shell?

Thanks to author project for this beautiful and helpful app, but I'm a novice and all work fine from demo frontend and nothing from the django code...so I kindly ask you: how the flow can be managed without frontend: x, created…
user2239318
  • 2,578
  • 7
  • 28
  • 50
0
votes
1 answer

designing models in django-viewflow

I am new to django-viewflow and still going through the viewflow related documents including cook-book examples. In the project that I am working on, I have below models. class FirstModel(models.Model): prod_ref_num = models.IntegerField() …
user1261115
  • 73
  • 1
  • 6
0
votes
1 answer

Django Viewflow - Run the complete worflow

I've a workflow. class WorkFlow1(Flow): start = flow.StartFunction(function1) \ .Next(this.task2) task2 = flow.StartFunction(function2) \ .Next(this.end) end = flow.End() @flow_start_func def function1(activation,…
Praful Bagai
  • 16,684
  • 50
  • 136
  • 267
0
votes
1 answer

Django source files not updating when changing pages

Using Django 1.11 with Viewflow-Pro 1.04 This is probably a very simple question, but I've spent hours googling and reading and have come up completely empty. Each page of my app has various CSS/javascript files that it loads with script and link…
Chris Burrus
  • 187
  • 9
0
votes
1 answer

Separating Business Workflow from Django Application

I've got a Django App where I need to follow different workflow for different inputs. I receive an input parameter with the data payload over the POST endpoint. Based on the input, I need to fire different functions, process the data accordingly and…
Praful Bagai
  • 16,684
  • 50
  • 136
  • 267
0
votes
1 answer

Django viewflow - Permission Denied

I understand that each flow node have six (6) REST API methods. But i don't understand about /activate_next/ and /undo/. When i try both of the methods i got an error Permission Denied. This is my example flow node: create_file =…
MunirohMansoor
  • 355
  • 1
  • 10
  • 19
0
votes
1 answer

How to render multiple forms in a single page using Material Design for django forms?

How can we display two forms in a single page using the Material Design for django forms? In the forms.py, we can add code like template = Template(""" {% form %} {% part form.username prefix %}
user866933
  • 305
  • 1
  • 6
  • 16
0
votes
1 answer

Missing matching query when writing custom views

Because of some form manipulations, I had to write custom views and followed the example in the cookbook. When writing in my view if request.POST: if includeHelper.check_valid(): process = includeHelper.save() …
Nick Lehmann
  • 598
  • 1
  • 7
  • 25
0
votes
1 answer

Django-ViewFlow: How to add CRUD views to flow

I've recently come across the Viewflow library for Django which I appears to be a very powerful tool for creating complex workflows. My app is a simple ticketing system were the workflow is started by creating a Ticket, then a user should be able to…
Greg Brown
  • 1,251
  • 1
  • 15
  • 32
0
votes
1 answer

How To Dynamically Create ViewFlow Processes?

I'm trying to set up a service so that a user could feasibly build their own workflows through a GUI or otherwise easy-to-use interface. When I try anonymously creating nodes and then referring to them by their position in a list, I get stuck -…
Cameron
  • 127
  • 10
0
votes
1 answer

NoReverseMatch - 'viewflow' is not a registered namespace

When trying to run the custom UI app ("parcel") for viewflow from the official cookbook I get this error: NoReverseMatch at /parcel/delivery/5/start/21/detail/ 'viewflow' is not a registered namespace I took a screenshot: Here's the…
Paul
  • 2,409
  • 2
  • 26
  • 29
0
votes
1 answer

how to upload files in viewflow

I'm trying to upload a document attached to the flow in viewflow as another field as would a string or an int, but when I put in the model Answer = FilerFileField () I do not recognize it view flow in the fields Fields = ["Answer"]
0
votes
1 answer

How to configure ViewFlow, many functionality

How to configure ViewFlow on Django project? I am new to Django community and I'm trying to install and test the functionality that have ViewFlow in Django I've see the demo online but I would like to install it in my computer and test all the…
0
votes
1 answer

Unable to get Hello World Tutorial running based on the documentation

I have cloned the repository at https://github.com/viewflow/cookbook and am attempting to run the viewflow_helloworld tutorial. When installing the requirements the default settings installs the latest version of Django (1.10.5), Celery 4.0.2 and…
Rodule
  • 1
-1
votes
1 answer

VIewflow flows exposed through rest endpoints

I am designing an API-first application, which will obviously not use the Django templating system but instead will use just DRF and a React frontend. Viewflow Pro has an API endpoint mechanism, and also I seem to understand (but I'm not entirely…
superandrew
  • 1,741
  • 19
  • 35
1 2 3
8
9