In a Django form, how do I make a field read-only (or disabled)?
When the form is being used to create a new entry, all fields should be enabled - but when the recor
I think your best option would just be to include the readonly attribute in your template rendered in a or
rather than include it in the form if it's readonly.
Forms are for collecting data, not displaying it. That being said, the options to display in a readonly
widget and scrub POST data are fine solutions.