main
Last change
on this file since feffc2f was feffc2f, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Added some views and functionalities
|
-
Property mode
set to
100644
|
File size:
551 bytes
|
Line | |
---|
1 | <!DOCTYPE html>
|
---|
2 | <html lang="en">
|
---|
3 | <head>
|
---|
4 | <meta charset="UTF-8">
|
---|
5 | <title>Детали</title>
|
---|
6 | </head>
|
---|
7 | <body>
|
---|
8 | <p th:text="${part.getName()}"></p>
|
---|
9 | <p th:text="${part.getDescription()}"></p>
|
---|
10 | <p th:text="${part.getManufacturer().getName()}"></p>
|
---|
11 | <p><span th:text="${amount}"></span><span> денари</span></p>
|
---|
12 | <form th:action="@{'/part/delivery/{id}' (id=${part.getId()}) }">
|
---|
13 | <label>
|
---|
14 | <input type="number" required min="1" placeholder="Количина"/>
|
---|
15 | </label>
|
---|
16 | <button type="submit">Купи</button>
|
---|
17 | </form>
|
---|
18 | </body>
|
---|
19 | </html> |
---|
Note:
See
TracBrowser
for help on using the repository browser.