Search code examples
pythondjangowindowspinax

What are the best reusable django apps for form processing?


In my application I want to process some form data and show it later on a different page.

My question is: Can you recommend any django apps to quickly set up such a system?

I appreciate your answer!!!


Solution

  • You mean like django-crispy-forms ? https://github.com/maraujop/django-crispy-forms

    which is built on top of the already capable django forms framework - https://docs.djangoproject.com/en/dev/topics/forms/

    Django cripsy forms helps you organize your form layout and configuration in forms.py, so keeping your template {{ form }} context variable simple and concise; without loosing customizability in your forms.py configuration.