On Mon, 2007-04-02 at 20:04 +0000, Stephen Mizell wrote:
> 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)

That line is executed exactly once, at the time the file is imported. So
it is not dynamic in any way.

(I seem to be saying that at least every other day here. It's normal
Python behaviour, people. Please stop hoping it were otherwise!)

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

At the moment, there is no easy way to change the base directory for
file uploads. You can however, change the filename to include
sub-directories, I believe (so change foo.blah to upload/dir/foo.blah).
If you want to try and change this, read the source in
django/db/models/fields.py and see what you can come up with. It does
get a bit hair, though, because of some curried functions.

Regards,
Malcolm



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