python - Django display uploaded multiple images with foreign key
问题 I have for example the Post with the id 31 after I upload one or more images are displayed in db as: id (for example: 1,2,3) url to image(for example: my-images/image.png) foreing_id (thats is id to post i.e 31 ) But I do not know how to display the image in the template for this post (and others of course) my model: class Post(models.Model): title = models.CharField(max_length=20000) date = models.DateTimeField(editable=True, null=True) text = models.TextField(max_length=50000) is_super =