Hi,I've started using Django recently and really enjoyed it until I ran into
a problem that I cannot find a solution on the net. Really hope someone can
cast some light on me.
Basically I want to use a random 7 digit string as the primary key of table
Foo, because this id is system generated I don't want to show it in the
admin interface. How to achieve this, please?
This is my example code:
class Foo(models.Model):
    id = models.CharField(primary_key = True, db_column='id', max_length=7)
    name = models.CharField("Name", max_length=30)
    def __unicode__(self):
        return self.name
    class Admin:
        fields = (
            (None, {'fields':('name',)}),)
Let's say the random string generation function is getRandom().
Many thanks
Cliff

--~--~---------~--~----~------------~-------~--~----~
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