-
Hi! I have a lot of fun using Jinjax to template the different parts of module I am working on. I am now attempting to render components inside another component, and have thus exposed the Below is my template example: {#def contents, details_component_path #}
...
<tbody>
{% for content in contents %}
{{details_component_path | irender(content=content, loop_index=loop.index, auto_expand=contents|length==1)}}
{% endfor %}
</tbody>
... Where in my application I have exposed the My I've digged a bit into the source, but not too sure I get what the flow is, and any and all explanation that might help pinpoint what causes this would be very much appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Let me go ahead and leave this up and help anyone who might run into the same problem - do not pass it as |
Beta Was this translation helpful? Give feedback.
Let me go ahead and leave this up and help anyone who might run into the same problem - do not pass it as
content
that was the issue 😄