[Django]-PyCharm: auto-insert Django template closing-tags ( {% endif %} {% endfor %} , etc. ) option?

8👍

Just hit tab after if

{% if<tab>

and you get

    {% if <cursor> %}

    {% endif %} 

This works for many tags: for, block, filter, spaceless, with, but inexplicably not blocktrans, autoescape, and comment changes to <comment></comment>

Leave a comment