|
|
|
@ -38,7 +38,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="table-container">
|
|
|
|
|
<table class="table" id="table">
|
|
|
|
|
<table class="table table-hover table-bordered" id="table">
|
|
|
|
|
<thead class="thread-light">
|
|
|
|
|
<tr>
|
|
|
|
|
<th class="table-header">
|
|
|
|
@ -83,12 +83,12 @@
|
|
|
|
|
<td>[[${empresa.correo}]]</td>
|
|
|
|
|
<td>[[${empresa.telefono}]]</td>
|
|
|
|
|
<td class="scrollable-cell">
|
|
|
|
|
<div class="scrollable-content skill-cell">
|
|
|
|
|
<div class="scrollable-content" th:utext="${#strings.replace(empresa.keywords, ',', ',<br>')}">
|
|
|
|
|
[[${empresa.keywords}]]
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="scrollable-cell">
|
|
|
|
|
<div class="scrollable-content skill-cell">
|
|
|
|
|
<div class="scrollable-content">
|
|
|
|
|
[[${empresa.sector.nombre}]]
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
@ -172,11 +172,11 @@
|
|
|
|
|
<td>${empresa.cif}</td>
|
|
|
|
|
<td>${empresa.correo}</td>
|
|
|
|
|
<td>${empresa.telefono}</td>
|
|
|
|
|
<td class="keywords-cell">
|
|
|
|
|
<div class="scrollable-content">
|
|
|
|
|
${empresa.keywords}
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="scrollable-cell">
|
|
|
|
|
<div class="scrollable-content">
|
|
|
|
|
${empresa.keywords}
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td>${empresa.sector.nombre}</td>
|
|
|
|
|
`;
|
|
|
|
|
tableBody.appendChild(row);
|
|
|
|
@ -253,19 +253,15 @@
|
|
|
|
|
row.dataset.id = empresa.id;
|
|
|
|
|
row.innerHTML = `
|
|
|
|
|
<td>${empresa.nombre}</td>
|
|
|
|
|
<td>${empresa.cif}</td>
|
|
|
|
|
<td>${empresa.correo}</td>
|
|
|
|
|
<td>${empresa.telefono}</td>
|
|
|
|
|
<td class="scrollable-cell">
|
|
|
|
|
<div class="scrollable-content skill-cell">
|
|
|
|
|
${empresa.keywords}
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="scrollable-cell">
|
|
|
|
|
<div class="scrollable-content skill-cell">
|
|
|
|
|
${empresa.sector.nombre}
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td>${empresa.cif}</td>
|
|
|
|
|
<td>${empresa.correo}</td>
|
|
|
|
|
<td>${empresa.telefono}</td>
|
|
|
|
|
<td class="keywords-cell">
|
|
|
|
|
<div class="scrollable-content">
|
|
|
|
|
${empresa.keywords}
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td>${empresa.sector.nombre}</td>
|
|
|
|
|
`;
|
|
|
|
|
tableBody.appendChild(row);
|
|
|
|
|
});
|
|
|
|
|