Answer the question
In order to leave comments, you need to log in
How to do multiple file upload from admin panel?
The following models are available:
class Category(models.Model):
...
class CategoryPhoto(models.Model):
category = models.ForeignKey(Category, on_delete=models.CASCADE, verbose_name='фото')
image = models.ImageField(upload_to='category_photos', verbose_name='фото')
name = models.CharField(max_length=50, blank=True, verbose_name='название')
...
class CategoryPhotoInline(admin.StackedInline):
model = CategoryPhoto
extra = 0
...
class CategoryAdmin(admin.ModelAdmin):
...
inlines = [CategoryPhotoInline]
Answer the question
In order to leave comments, you need to log in
In general, I decided this way: ishalyapin.ru/%D0%BC%D1%83%D0%BB%D1%8C%D1%82%D0%B8...
Not very convenient, since the download is on a separate page, but it works not bad
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question