I want to use AngularJS with Django however they both use {{ }} as their template tags. Is there an easy way to change one of the two to use some other custom
{{ }}
If you did separate sections of page properly then you can easily use angularjs tags in "raw" tag scope.
In jinja2
{% raw %} // here you can write angularjs template tags. {% endraw %}
In Django template (above 1.5)
{% verbatim %} // here you can write angularjs template tags. {% endverbatim %}