$("a").click( function(e) {
var class = $(this).attr('class');
if ((class == 'Install') || (class=='Update')){
e.preventDefault();
var href = $(this).attr('href');
var comp = $(this).attr('name');
jConfirm('Are you sure?', class, function(b) {
if (b){
if (comp){
$.ajax ({
type: "GET",
url: "{% url vb_monitoring_update_agreement" + comp +" %}",
dataType: "json",
cache: false,
success: agreement
})
}
//window.location = href;
}
});
}
});
url: “{% url vb_monitoring_update_agreement” + comp +“ %}”
В этой строке я хочу пердать перменную javascripta(jquery) в reverse шаблон. Подскажите что я делаю не так?