up vote 53 down vote favorite
25
share [g+] share [fb]

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 record is in update mode some fields need to be read-only.

For example, when creating a new Item model, all fields must be editable, but while updating the record, is there a way to disable sku field so that it is visible but cannot be edited?

class Item(models.Model):
    sku = models.CharField(max_length=50)
    description = models.CharField(max_length=200)    
    added_by = models.ForeignKey(User)    


class ItemForm(ModelForm):
    class Meta:
        model = Item
        exclude = ('added_by')      

def new_item_view(request):     
    if request.method == 'POST':
        form = ItemForm(request.POST)
        #validate and save
    else:
            form = ItemForm()       
    #render the view

Can class ItemForm be reused? What changes would be required in ItemForm or Item model class? Would I need to write another class, "ItemUpdateForm", for updating the item?

def update_item_view(request):      
    if request.method == 'POST':
        form = ItemUpdateForm(request.POST)
        #validate and save
    else:
        form = ItemUpdateForm()
link|improve this question

See also SO question: Why are read-only form fields in Django a bad idea? @ stackoverflow.com/questions/2902024 , Accepted answer (by Daniel Naab) takes care of malicious POST hacks. – 108.im Aug 13 '11 at 2:14
feedback

10 Answers

up vote 56 down vote accepted

To disable entry on the widget, and prevent malicious POST hacks, this should work:

class ItemForm(ModelForm):
    def __init__(self, *args, **kwargs):
        super(ItemForm, self).__init__(*args, **kwargs)
        instance = getattr(self, 'instance', None)
        if instance and instance.id:
            self.fields['sku'].widget.attrs['readonly'] = True

    def clean_sku(self):
        return self.instance.sku

Or, replace if instance and instance.id with another condition indicating you're editing. You could also set the attribute disabled on the input field, instead of readonly.

The clean_sku function will ensure that the readonly value won't be overridden by a POST.

Otherwise - If you're not going to actually remove the field from the form - there is no Django form field which will only display as just a string, like a span, but not accept a modified value on request.POST. You should instead create a separate ModelForm that doesn't include the uneditable field(s), and just print the uneditable values inside your template.

link|improve this answer
Daniel, Thanks for posting an answer. It is not clear to me how to use this code? wouldn't this code work for same for new as well update mode? Can you edit your answer to give examples on how to use it for new and update forms? Thanks. – 108.im Nov 29 '08 at 16:29
The key to Daniel's example is testing the .id field. Newly created objects will have id==None. By the way, one of the oldest open Django tickets is about this issue. See code.djangoproject.com/ticket/342 . – Peter Rowell Nov 29 '08 at 16:52
Peter Thanks for the explanation. – 108.im Nov 30 '08 at 11:03
but what about foreignkey fields.It is not for foreignkey – ha22109 May 26 '09 at 10:06
this doesn't work for FileField methinks. – skyl Apr 21 '10 at 19:47
show 2 more comments
feedback

Setting READONLY on widget only makes the input in the browser read-only. Adding a clean_sku which returns instance.sku ensures the field value will not change on form level.

def clean_sku(self):
    return self.instance.sku

This way you can use model's (unmodified save) and aviod getting the field required error.

link|improve this answer
2  
+1 This is a great way to avoid more complicated save() overrides. However, you'd want to do an instance check before the return (in newline-less comment mode): "if self.instance: return self.instance.sku; else: return self.fields['sku']" – Daniel Naab Jan 25 '09 at 6:08
1  
I wish I could +1000 this. – shylent Oct 31 '09 at 17:54
1  
+1 Simple, great answer. – Liam May 4 '10 at 11:51
feedback

To make this work for a ForiegnKey field, a few changes need to be made. Firstly, the SELECT HTML tag does not have the readonly attribute. We need to use disabled="disabled" instead. However, then the broswer doesn't send any form data back for that field. So we need to set that field to not be required so that the field validates correctly. We then need to reset the value back to what it used to be so it's not set to blank.

So for foriegn keys you will need to do something like:

class ItemForm(ModelForm):

    def __init__(self, *args, **kwargs):
        super(ItemForm, self).__init__(*args, **kwargs)
        instance = getattr(self, 'instance', None)
        if instance and instance.id:
            self.fields['sku'].required = False
            self.fields['sku'].widget.attrs['disabled'] = 'disabled'

    def clean_sku(self):
        # As shown in the above answer.
        instance = getattr(self, 'instance', None)
        if instance:
            return instance.sku
        else:
            return self.cleaned_data.get('sku', None)

This way the browser won't let the user change the field, and will always POST as it it was left blank. We then override the clean method to set the field's value to be what was originally in the instance.

link|improve this answer
feedback

awalker answer helps me a lot!

I've changed his example to work with django 1.3, using get_readonly_fields.

Usually you should declare something like this on app/admin.py

class ItemAdmin(admin.ModelAdmin):
    ...
    readonly_fields = ('url',)

I've adapted in this way:

# In the admin.py file
class ItemAdmin(admin.ModelAdmin):
    ...
    def get_readonly_fields(self, request, obj=None):
        if obj:
            return ['url']
        else:
            return []

And it works fine. Now if you add an Item the url field is read-write, but on change it became read-only.

link|improve this answer
This is a great find and a worthy addition to this question! Thank you! – jathanism Sep 6 '11 at 16:41
feedback

For django 1.2+, you can override the field like so:

sku = forms.CharField(widget = forms.TextInput(attrs={'readonly':'readonly'}))
link|improve this answer
This does not allow the field to be edited at add time either, which is what the original question is about. – Matt S. Feb 28 '11 at 5:36
feedback

I ran across a similar problem. It looks like I was able to solve it by defining a "get_readonly_fields" method in my ModelAdmin class.

Something like this:

# In the admin.py file

class ItemAdmin(admin.ModelAdmin):

    def get_readonly_display(self, request, obj=None):
        if obj:
            return ['sku']
        else:
            return []

The nice thing is that obj will be None when you are adding a new Item, or it will be the object being edited when you are changing an existing Item.

get_readonly_display is documented here: http://docs.djangoproject.com/en/1.2/ref/contrib/admin/#modeladmin-methods

link|improve this answer
feedback

As a useful addition to Humphrey's post above, I had some issues with django-reversion because it still registered disabled fields as 'changed'. The following code fixes the problem.

class ItemForm(ModelForm):

def __init__(self, *args, **kwargs):
    super(ItemForm, self).__init__(*args, **kwargs)
    instance = getattr(self, 'instance', None)
    if instance and instance.id:
        self.fields['sku'].required = False
        self.fields['sku'].widget.attrs['disabled'] = 'disabled'

def clean_sku(self):
    # As shown in the above answer.
    instance = getattr(self, 'instance', None)
    if instance:
        try:
            self.changed_data.remove('sku')
        except ValueError, e:
            pass
        return instance.sku
    else:
        return self.cleaned_data.get('sku', None)
link|improve this answer
feedback

As I can't yet comment (muhuk's solution), I'll response as a separate answer. This is a complete code example, that worked for me:

def clean_sku(self):
  if self.instance and self.instance.pk:
    return self.instance.sku
  else:
    return self.cleaned_data['sku']
link|improve this answer
feedback

Hi I made a MixIn class which you may inherits to be able to add a read_only iterable field which will disable and secure fields on non first edit:

(Based on Daniel and Muhuk answers)

from django import forms

# I used this instead of lambda expression after scope problems
def _get_cleaner(form, field):
    def clean_field():
         return getattr(form.instance, field, None)
    return clean_field

class ROFormMixin(forms.BaseForm):
    def __init__(self, *args, **kwargs):
        super(ROFormMixin, self).__init__(*args, **kwargs)
        if hasattr(self, "read_only"):
            if self.instance and self.instance.pk:
                for field in self.read_only:
                    self.fields[field].widget.attrs['readonly'] = True
                    setattr(self, "clean_" + field, _get_cleaner(self, field))

# basic usage
class TestForm(AModelForm, ROFormMixin):
    read_only = ('sku', 'an_other_field')
    def __init__(self, *args, **kwargs):
        super(TestForm, self).__init__(*args, **kwargs)
link|improve this answer
feedback

one simple option is to just type form.instance.fieldName in the template instead of form.fieldName

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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