问题 I've been learning AngularJS and I'd like to integrate it with my SF2 back end. I'm getting confuse with the routes let's see what I have: When we go onto /usermanager the symfony routing system opens a controller that loads a twig template. In this template, I load all the js components needed for angular and do this: {% extends '::base.html.twig' %} {% block javascripts %} {{ parent() }} <script type="text/javascript" src="{{ asset('js/UserManager_Angular.js')}}"></script> {% endblock %} {%