Live edit plugin not working for jinja extended templates
Hello,
I am using the live edit plugin and chrome debugging extension and it is working as intended. When I use shift it highlights the element and when I modify html it changes in browser. However, it only works with the base html file when extending template using jinja, the changes does not reflect for the extended template.
base.html :
<head></head>
<body> {block body} {endblock} </body>
page.html:
{extends 'base.html'}
{block body}
page body
{endblock}
Is there anyway to work around this limitation ?
Please sign in to leave a comment.
Live editing Jinja2 templates is not currently supported; please vote for https://youtrack.jetbrains.com/issue/WEB-42365 to be notified on any progress with it