I'm using the ImageKit and for some reason it's displaying the absolute path to images. Any idea how to make it to display the path I have set in the MEDIA_URL ?

link|improve this question

feedback

2 Answers

Have you tried using {{ image.url }}?

link|improve this answer
I think that's what I have {{ p.thumbnail_image.url }} and {{ p.display.url }} – avatar Mar 3 '11 at 2:03
feedback
up vote 0 down vote accepted

The problem is in Models with the ImageKit's cache_dir seting. If you put a slash in front of your path and have the absolute path to your images then when you pull the images in your template it will show the absolute path to your images:

cache_dir = '/mymedia/myimages/cache/'

But if you take the front slash off from your path and not include the folder mentioned in MEDIA_URL (in settings.py) then the problem with the reference to the absolute path goes away:

cache_dir = 'myimages/cache/'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.