Here is my model:
class Page(models.Model):
title = models.CharField(max_length=70)
slug = models.SlugField()
priority = models.IntegerField()
body = RichTextUploadingField()
author = models.ForeignKey(User, on_delete=models.CASCADE)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
status = models.CharField(max_length=10, choices=STATUS_CHOICES, default='published'
The problem is when I save the record, some of the HTML elements are escaped. For example,I cannot save <I class="icofont-check-circled"></i>
. Could you help me