// var del_img = '<spanid="delete_{{doc.id}}"><atitle="Delete this document!"style="cursor: pointer;"onclick="deleteNode('+"{{doc.id}}"+',\''+title+'\')"><imgwidth="20px"src="/static/img/delete-big.png"></img></a><span>'
// $("#"+id).prepend( del_img )
// }
// {% endfor %}
});
},
error: function(result) {
console.log("Data not found");
...
...
@@ -62,13 +101,15 @@ function deleteNode(node_id) {
}
});
}
current_docs=[]
current_docs = {}
{% for doc in documents %}
id = "doc_{{doc.id}}"
title = "{{doc.name}}"
if(BIS_dict[title]) {
vardelimg='<a title="Delete this document!" style="cursor: pointer;" onclick="deleteNode('+"{{doc.id}}"+')"><img width="20px" src="/static/img/delete-big.png"></img></a>'
$("#"+id).prepend(delimg)
var del_img = '<spanid="delete_{{doc.id}}"><atitle="Delete this document!"style="cursor: pointer;"onclick="deleteNode('+"{{doc.id}}"+',\''+title+'\')"><imgwidth="20px"src="/static/img/delete-big.png"></img></a><span>'