Live templates inside of string
I would like to create Live templates for Django template filters like url, trans or static, but the problem is that these templates won't work inside of a string, which is a place where are they mostly used.
Example:
<a href="url">
into:
<a href="{% url '' %}">
Is it possible to achieve it somehow?
Please sign in to leave a comment.