diff --git a/site/templates/llm.html b/site/templates/llm.html index 548ba8e..03d6ed2 100644 --- a/site/templates/llm.html +++ b/site/templates/llm.html @@ -81,7 +81,7 @@
- +
ИмяИзменёнРазмерСтатус
ИмяИзменёнРазмерСтатус
@@ -142,7 +142,7 @@ function renderTable() { if (fileQueue.length === 0) { - fileTable.innerHTML = 'Нет файлов — выберите .docx / .pdf / .zip'; + fileTable.innerHTML = 'Нет файлов — выберите .docx / .pdf / .zip'; parseBtn.disabled = true; } else { fileTable.innerHTML = fileQueue.map(function(f, i) { @@ -152,8 +152,8 @@ '' + formatDate(f.lastModified) + '' + '' + formatSize(f.size) + '' + '' + (f.status || '') + '' + - '' + - '' + + '' + + '' + ''; }).join(''); } @@ -348,7 +348,7 @@ '' + '' + formatSize(d.total_bytes) + '' + '' + d.total_time_s + 'с' + - ''; + ''; fileTable.appendChild(summaryRow); } }; diff --git a/site/templates/upload.html b/site/templates/upload.html index 49551bd..cff4d9f 100644 --- a/site/templates/upload.html +++ b/site/templates/upload.html @@ -74,7 +74,7 @@
- +
ИмяИзменёнРазмерСтатус
ИмяИзменёнРазмерСтатус
@@ -123,7 +123,7 @@ function renderTable() { if (fileQueue.length === 0) { - fileTable.innerHTML = 'Нет файлов — выберите .docx / .pdf / .zip'; + fileTable.innerHTML = 'Нет файлов — выберите .docx / .pdf / .zip'; parseBtn.disabled = true; } else { fileTable.innerHTML = fileQueue.map(function(f, i) { @@ -133,8 +133,8 @@ '' + formatDate(f.lastModified) + '' + '' + formatSize(f.size) + '' + '' + (f.status || '') + '' + - '' + - '' + + '' + + '' + ''; }).join(''); } @@ -325,7 +325,7 @@ '' + '' + formatSize(d.total_bytes) + '' + '' + d.total_time_s + 'с' + - ''; + ''; fileTable.appendChild(summaryRow); } };