vscode-djaneiro
vscode-djaneiro copied to clipboard
Linking between template files
I know that this is a big request. But is it possible to do the linking between the django template files using the extends and the include tags?
This is also implemented in pycharm. I don't know how hard this is to implement. I just thought it could be a nice edition
Please, can you write an example?
What I meant with my ticket is that the include tag template_name links to the other template. With ctrl + click it will open the file templates/includes.html.
templates/master.html
<div>
{% include 'includes/header.html %}
</div>
templates/includes/header.html
<nav>Menu</nav>