I'm wanting to have upload_to for my file so it uploads to a different
directory for each user.  This works when I use it with a newform, but
when I try to use the Django admin, it puts None as the username (I
want to base it on whatever username I select for "user").  I'm using
some middleware for the threadlocals to get the current user.

Any ideas on how to make this work?

from project.middleware import threadlocals

class File(models.Model):
    name = models.CharField(maxlength=100)
    file =
models.FileField(upload_to=str(threadlocals.get_current_user()) + '/
files')
    user = models.ForeignKey(User)

    def save(self):
        if not self.user:
            self.user = threadlocals.get_current_user()
        super(File,self).save()


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