reordered table columns
This commit is contained in:
@@ -38,6 +38,7 @@
|
|||||||
<table id="table" class="table table-striped">
|
<table id="table" class="table table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th th:unless="${bean}">Workpackage</th>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Beschreibung</th>
|
<th>Beschreibung</th>
|
||||||
<th>URL</th>
|
<th>URL</th>
|
||||||
@@ -46,10 +47,11 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr th:each="b : ${apps}">
|
<tr th:each="b : ${apps}">
|
||||||
|
<td th:text="${b.workpackagesString}" th:unless="${bean}"></td>
|
||||||
<td th:text="${b.name}"></td>
|
<td th:text="${b.name}"></td>
|
||||||
<td th:text="${b.description}"></td>
|
<td th:text="${b.description}"></td>
|
||||||
<td><a th:href="${b.repositoryUrl}" target="_blank">gitlab</a></td>
|
<td><a th:href="${b.repositoryUrl}" target="_blank">gitlab</a></td>
|
||||||
<td><a th:href="@{/projectmanagement/app/{id}/assign(id=${b.pkApp})}">zuordnen</a><span th:text="' (' + ${b.workpackagesString} + ')'" th:if="${b.workpackagesString}"></span></td>
|
<td><a th:href="@{/projectmanagement/app/{id}/assign(id=${b.pkApp})}">zuordnen</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user