[Answer]-Django1.6 UpdateView, how to display field without update it

1👍

Try one of these:

  1. Set readonly attributes on fields that you don’t want to be changed.

  2. Instead of {{form.desc.value}} you can display instance field value – {{ form.instance.desc }}, next remove desc field from include attribute.

Leave a comment