Hi,

I have a model in which a field should be generated automatically. So
it shouldn't be shown in the admin add page. Also in the change page
it should be shown but should be non-editable. As an example-

class Student(models.Model):
    first = models.CharField(max_length=64)
    last = models.CharField(max_length=64)
    # roll number, automatically generated, non-editable
    roll = models.CharField(max_length=64)

setting editable=False will hide it from both add and change pages, so
I can't use that. I looked at ways for making the field non-editable
and visible, but couldn't find any satisfactory answer.

Any ideas?

Thanks in advance,
Ram

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to