Skip to content
Snippets Groups Projects
Commit e9836e51 authored by Haoyu Sun's avatar Haoyu Sun
Browse files

itemList button redirect

parent 0beb79c6
No related branches found
No related tags found
1 merge request!1Dev
......@@ -6,5 +6,28 @@
</head>
<body>
<div>itemList</div>
<table>
<!--thead-->
<thead>
<tr>
<th>id</th>
<th>name</th>
<th>description</th>
</tr>
</thead>
<!-- tbody -->
<tbody>
<tr th:each="exchangeItem,iStat : ${exchangeItems}">
<td th:text="${iStat.index}"></td>
<td th:text="${exchangeItem.name}"></td>
<td th:text="${exchangeItem.description}"></td>
<td>
<button><a th:href="@{/exchange/{link} (link=${exchangeItem.id})}">
seeDetails
</a></button>
</td>
</tr>
</tbody>
</table>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment