TASK-230 Delete ldap directories xmlform and templates

This commit is contained in:
Brayan Pereyra
2025-09-18 14:30:02 +00:00
parent 7db96008f6
commit 4de1190e02
10 changed files with 12 additions and 1167 deletions

View File

@@ -0,0 +1,15 @@
function redirectPage(page){
window.location = page;
}
function randomNum(inf, sup){
numPos = sup - inf;
aleat = Math.random() * numPos;
aleat = Math.round(aleat);
return parseInt(inf) + aleat;
}
function renderStatus (data, metadata, record, rowIndex, columnIndex, store) {
return "<span style=\"color: " + ((record.data.IMPORT == 1)? "#005E20" : "#FF0000") + ";\">" + record.data.STATUS.toUpperCase() + "</span>";
}