Thanks to pagenoare on #django-pl there is some progress:

If I create a modelform, and instead of manually invoking model
instance and saving it, I just do:

new_image = form.save()

Things work like expected. Why? :)

On 2 Kwi, 12:18, pielgrzym <pan.pielgr...@gmail.com> wrote:
> Hi there,
>
> Before explanation here is the link to problematic 
> code:http://wklej.org/hash/968a35feef/
>
> If one creates a model with imageField and uses it via admin
> everything is just fine - model instances have the image field with
> correct url:
>
> photo = Image.objects.get(pk=1)
> photo.image.url
> '/media/blabla/photo.jpg'
>
> If I upload the file manually, not via admin interface the image.url
> is an absolute path to the image file:
>
> photo2 = Image.objects.get(pk=1)
> photo2.image.url
> '/home/user/django_projects/myproject/media/blabla/photo.jpg'
>
> Could someone explain me what am I doing wrong?
> This happens on django 1.0 and latest django svn snapshot :(((
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to