Revize da53e1ae
Přidáno uživatelem Petr Urban před téměř 3 roky(ů)
src/main/webapp/WEB-INF/templates/result.html | ||
---|---|---|
22 | 22 |
<!-- Result table header --> |
23 | 23 |
<thead> |
24 | 24 |
<tr> |
25 |
<th scope="id" hidden>Project ID</th> |
|
25 | 26 |
<th scope="col">Project Name</th> |
26 | 27 |
<th scope="col" th:each="antiPattern: ${queryResults.get(0).getQueryResultItems()}"> |
27 | 28 |
<a data-toggle="popover" |
... | ... | |
39 | 40 |
<!-- Result table content --> |
40 | 41 |
<tbody> |
41 | 42 |
<tr th:each="queryResult : ${queryResults}"> |
43 |
<td th:text="${queryResult.getProject().id}" hidden></td> |
|
42 | 44 |
<td th:text="${queryResult.getProject().name}"></td> |
43 | 45 |
<td class="align-middle" th:each="resultItems: ${queryResult.getQueryResultItems()}"> |
44 | 46 |
|
Také k dispozici: Unified diff
#43 Added back column ID of each project but HIDDEN.