Why Choose Viewflow?

When it comes to building web apps, there are two main approaches: using raw power with Django or using low-code solutions. Django offers a lot of flexibility and control, but can be time-consuming. Low-code solutions are fast and easy, but often lack customization options.

Viewflow bridges the gap between these two approaches. You can start your app quickly and make it ready for users in just one day. You have the flexibility to make small changes and iterate quickly. And, if you need something different, you can use the standard Django/Python/HTML/Javascript tools you already know. Viewflow can also be hosted on your own servers and integrated with your existing services.

What sets Viewflow apart is that it doesn’t force you to use slow, drag-and-drop interfaces for your UI and workflows. Instead, it provides a small, consistent API to build complex forms and workflows. With Viewflow, you can type faster than using a mouse.

../_images/ACME-Corp.png
class Client(models.Model):
    name = models.CharField(max_length=240)
    phone = models.CharField(max_length=14)
    address = models.CharField(max_length=300)
    email = models.EmailField(max_length=240)

site = Site(title="ACME Corp", viewsets=[
    Application(
        title='Sample App',
        icon='people',
        app_name='emp',
        viewsets=[
            ModelViewset(model=Client),
        ]
    ),
])

In short, Viewflow balances the power of Django with the speed of low-code solutions. With quick prototyping, customization, and efficient APIs, it’s the perfect choice for developers looking to create business apps.