[Fixed]-Uploading images using Django Admin?

30👍

Forgive me if I’m wrong, but it sounds like you don’t need anything more than the default admin widget for an ImageField.

This satisfies:

  1. Uploading images using Django Admin
  2. Including a profile picture (singular) to go with a celebrity.

Also, the link you point to is pretty old. The django admin ships with javascript enabled arbitrarily long inlines these days (for at least a year I’d think), so if you want multiple images, just set up a second model that has a foreign key to your profile model. Set up an admin inline and you’ve got out of the box functionality!

class Celebrity(models.Model):
    name = models.CharField(max_length=100)

class Image(models.Model):
    celebrity = models.ForeignKey(Celebrity, on_delete=models.CASCADE)
    image = models.ImageField()

class InlineImage(admin.TabularInline):
    model = Image

@admin.register(models.Celebrity)
class CelebrityAdmin(admin.ModelAdmin):
    inlines = [InlineImage]

Leave a comment