The easiest way is to upload images to a photo hosting service (picasa, flickr, etc.). If you prefer to stick with the django admin, you can write a simple application with one model:
class Image(models.Model): title = models.CharField(max_length=255) file = ImageField(upload_to='car_images') def get_absolute_url(self): return (self.file and self.file.url) or ''
Marat source share