I’ve created a form that has many fields. In another view, I need to display the data that was entered in the form. Is there a simple way to reuse the form, but this time to display the data that was entered (i.e. as ‘readonly’)?
Share
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 could subclass your form and set all of the form widgets with the attribute
disabled. Or set all of the fields to a widget that just renders text and no input box (like the django admin readonly widget).