I've pasted below small part of my models class. It's a class for publishing entries (articles, blog posts etc.). On most websites news images are pasted below the text of message.
Is it possible to add images directly inside the text while writing the entry/article?
Example:
Quisque aliquam magna pulvinar libero tincidunt auctor. Praesent nisi lacus, porta vel mattis sed, rhoncus ultrices risus. <<< Image 1 >>> Ut lobortis interdum nulla eget eleifend. Integer tincidunt accumsan vehicula. Nunc quis justo sit amet neque dapibus suscipit nec vitae felis. Proin pulvinar blandit enim, vel porta metus convallis non. <<< Image 2 >>> Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
class Publisher(models.Model):
text = models.TextField()
images = models.ManyToManyField('Images', blank=True)