How to access image folder in django
- by anc1revv
I just started django and i want to access images uploaded by a user.
here is my model:
class Food(models.Model):
name = models.CharField(max_length=100)
price = models.DecimalField(max_digits=4, decimal_places=2)
quantity = models.IntegerField(blank=True, null=True)
description = models.CharField(max_length=200)
location = models.CharField(max_length=100)
time = models.DateTimeField()
photo_thumbnail = models.ImageField(upload_to="images")
photo_fullsize = models.ImageField(upload_to="images")
i stored the image in the "images" folder below
the html is this:
img src="{{steak.photo_thumbnail}}"
and
steak.photo_thumbnail = images/steak_and_egg_thumbnail_1.png
here is the error i get:
[06/Jul/2012 19:08:24] "GET /menu/ HTTP/1.1" 200 99
[06/Jul/2012 19:08:24] "GET /menu/images/steak_and_egg_thumbnail_1.png HTTP/1.1" 404 2127