I want to create a blog. I want to create blog content in admin panel and render the blog content with HTML format.
models.py
class Blog(models.Model):
    title = models.CharField(max_length=100)
    content = models.TextField()
    date_created = models.DateField(auto_now_add=True)
def __str__(self):
    return self.title
In admin panel : Create blog content with HTML format in admin
In template:
{% extends 'base.html' %}
{% block content %}
<h1>{{ blog.title }}</h1>
<p>{{ blog.content }}</p>
{% endblock content %}
Is there any template tags, model field, or anything to do this?