I have a view and template called index.html.
I have a image which is broken form.I saw django docs,which was n't clear to me.
How do,i make my image to appear.I m asking ,while development.image is in ,this URL /home/logic/quote/hummingbird.gif'
I have a view and template called index.html.
I have a image which is broken form.I saw django docs,which was n't clear to me.
How do,i make my image to appear.I m asking ,while development.image is in ,this URL /home/logic/quote/hummingbird.gif'
Your question is not really clear but I suspect that you are having trouble serving static files using the Django built-in web server. Have a look at the following StackOverflow Questions:
what about writing an inclusion tag that makes something simmilar to:
if settings.debug=True:
return localimage
else:
return serverimage