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

itemList button redirect

parent 0beb79c6
1 merge request!1Dev
...@@ -6,5 +6,28 @@ ...@@ -6,5 +6,28 @@
</head> </head>
<body> <body>
<div>itemList</div> <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> </body>
</html> </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