I\'m building a gallery using Django(1.5.1) on my local machine. In my Album model I have a ImageField. There is a view to show all images of an album. It works
ImageField
Within your details.html, change your
img src="{{ image.image.url }}" height="420"
To
img src="your_app/media/{{ image.image.url }}" height="420"
I hope this helps. If not I will be glad to provide more details.