How can I turn off Django\'s automatic HTML escaping, when I write into model\'s TextField?
Just use django's safe filter. In your template you would do something like this:
{{ instance.my_text_field|safe }}