On Oct 5, 6:45 pm, Andy <[EMAIL PROTECTED]> wrote:
> I'm having some trouble with the object.get_<fieldname>_url() results
> for my image field. I'm trying to get this going with the Django's
> (ver 0.95) development server in WinXP. I have the following line in
> my model:
>
> avatar = models.ImageField(upload_to='users/', blank=True, null=True)
>
> I have the following in my settings.py:
>
> MEDIA_URL = '/media/images/'
>
> When I call object.get_avatar_url in either a view or a template it
> returns the following URL:
>
> /media/images/image.jpg
>
> It's missing the 'upload_to' directory, it should be this:
>
> /media/images/users/image.jpg
>
> According to the FileField documentation it is supposed to append the
> upload_to dir to the end of the MEDIA_URL, but it's not doing that.
> I've tried a lot of variations of beginning/ending slashes but it
> doesn't help. Am I missing something obvious here? Should it work as
> intended on the dev server?
>
> Thanks in advance.
The question is, does it upload the file to the appropriate place?
Personally when I specify an upload_to path I omit the beginning and
end slashes.
Also, I believe the upload_to path is only appended at the time of
upload. So, if you already had the aforementioned entry in the
database before you set the upload_to path you may get the result you
are seeing.
Steve Potter
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---