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!!!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 yourforms.pyconfiguration.