Hi ,
Suppose I have TemplateA.html like this
<html>
<body>
<div> {{ name }} </div>
{% include "TemplateB.html" %}
</body>
</html>
and TemplateB.html is like this :
<div> {{ address }} </div>
Now if I am rendering TemplateA.html with dynamic map , TemplateB.html is not included in templateA .
Is included templates are able to access dynamic fields of main template ??