source: src/main/resources/templates/filteredParts.html@ ae042f4

main
Last change on this file since ae042f4 was ae042f4, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Configured spring security, changed spring version

  • Property mode set to 100644
File size: 621 bytes
Line 
1<div>
2<h1>Резултат од филтерот</h1>
3<a th:href="${'/products'}">Врати се на сите производи</a>
4
5<table>
6 <thead>
7 <tr>
8 <th>Name</th>
9 <th>Manufacturer</th>
10 <th>Details</th>
11 </tr>
12 </thead>
13 <tbody>
14 <tr th:each="f : ${filtered}">
15 <td th:text="${f.getPartname()}"></td>
16 <td th:text="${f.getPmname()}"></td>
17 <td>
18 <form th:action="@{'/part/{id}' (id=${f.getPartid()}) }">
19 <button type="submit">Детали</button>
20 </form>
21 </td>
22 </tr>
23 </tbody>
24</table>
25
26</div>
Note: See TracBrowser for help on using the repository browser.