Access-Control-Allow-Origin no aplicativo Django quando acessado com o Phonegap

Estou desenvolvendo um aplicativo Phonegap para meu aplicativo baseado no Django, mas ao tentar fazer chamadas do Ajax, recebo este erro:

XMLHttpRequest cannot load http://domain.herokuapp.com/getcsrf/?tags=jquery%2Cjavascript&tagmode=any&format=json. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. 

Como faço para que meu aplicativo Django permita origem cruzada para alguns URLs?

Aqui está o meu código Ajax:

get: function() {
    $.getJSON("http://domain.herokuapp.com/getcsrf/",
    {
        tags: "jquery,javascript",
        tagmode: "any",
        format: "json"
    },
    function(data) {
        $.each(data.items, function(item){
            console.log(item);
            });
    });
}

questionAnswers(2)

yourAnswerToTheQuestion