vote up 1 vote down star

I have a form. Once the form is filled I don't want the user to change anything in the form.

But the user can see the values. Meaning all the fields are non editable. I can do this by using instance method but this does not help in foreignkey.

flag

19% accept rate

2 Answers

vote up 0 vote down check

you can use readonlyAdmin

link|flag
Oh yah.. that's very "simple" :-) – drozzy Oct 6 at 1:10
vote up 0 vote down

Depends on what you mean "once the form is filled".

If it's an html form post, just render a new html page with simple text and values of the submitted form.

If the post-back was an ajax call, you can change the CSS-styling of the elements for example and disable the submit button or erase the whole and substitute the values that you get back from ajax request.

There is no "editable=False" property on html input elements btw.

link|flag
i know but if it can be simple then why not use that – ha22109 Sep 3 at 10:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.