I'm using Angular and Twig. Is there a way I can call an Angular function called initItems in my html like inside a
{% for post in posts%} //twig
<% verbatim %>
{{initItems(post)}} //angular
<% endverbatim %>
{% endfor %}
when post is a twig variable? Inside my initItems function in my controller, post is showing up as undefined.