I want to save html code in database through django.
In models.py i have this field
description = models.TextField()
But when i save data in description field through Django Admin. It display data like this
<h1>This is example</h1>
rather then converting it in html. Here's the Out Put