2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 11:40:58 +00:00

Implemented bootstrap-table for parts list

This commit is contained in:
Oliver
2018-05-02 22:18:58 +10:00
parent fb9142c3fd
commit 024fe04e0e
5 changed files with 86 additions and 28 deletions

View File

@ -0,0 +1,14 @@
function renderLink(text, url) {
if (text && url) {
return '<a href="' + url + '">' + text + '</a>';
}
else if (text) {
return text;
}
else {
return '';
}
}