On 1/3/07, Lawrence Oluyede <[EMAIL PROTECTED]> wrote:
I don't understand the meaning of this ticket. UserField is not a class in the model API, nor present in any place of the Django tree. Maybe is something that was later removed from Django?
I assume that what the submitter of the ticket wanted was the ability to do something like class Foo(models.Model): name = models.CharField(maxlength=200) owner = models.ForeignKey(User, default=me) and have the 'default=me' mean that the foreign key should default to the currently-logged-in user. There is not and never has been such a thing as a 'UserField', I'm just assuming it meant a foreign key to User. -- "May the forces of evil become confused on the way to your house." -- George Carlin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
