I am buiding an app using angular and django. So now out of the partials, the code clashes beacause of {{}}
.
angular.module('app', [])
.config(function($interpolateProvider){
$interpolateProvider.startSymbol('[[').endSymbol(']]');
});
This changes interpolate symbol for whole app but i want to change $interpolate
only for specific controller. Can somebody show the way to achieve this?