Is it possible to use AngularJS with the Jinja2 template engine?
You have some options. 1) Change the delimiter notation for Angular: var app = angular.module(‘Application’, []); app.config([‘$interpolateProvider’, function($interpolateProvider) { $interpolateProvider.startSymbol(‘{a’); $interpolateProvider.endSymbol(‘a}’); }]); Whatever is chosen for the start and end symbols will act as the new delimiters. In this case, you would express a variable to Angular using {a some_variable a}. This approach has the … Read more