From e9cef81f89584110776c84ee511e26097eb8323c Mon Sep 17 00:00:00 2001 From: mrfoxygmfr Date: Mon, 28 Apr 2025 00:45:56 +0300 Subject: feat: implement products controller + pages --- src/main/resources/templates/productEdit.html | 48 +++++++++++++++ src/main/resources/templates/products.html | 84 +++++++++++++++++++++++++++ src/main/resources/templates/storage.html | 82 ++++++++++++++++++++++++++ 3 files changed, 214 insertions(+) create mode 100644 src/main/resources/templates/productEdit.html create mode 100644 src/main/resources/templates/products.html create mode 100644 src/main/resources/templates/storage.html (limited to 'src/main/resources') diff --git a/src/main/resources/templates/productEdit.html b/src/main/resources/templates/productEdit.html new file mode 100644 index 0000000..dac8ba6 --- /dev/null +++ b/src/main/resources/templates/productEdit.html @@ -0,0 +1,48 @@ + + +
+ + +
+ +
+ + +
+ + + +

+ + +

+ + +

+ + +

+ + +

+ + + +
+
+ + +
+
+
+ + + \ No newline at end of file diff --git a/src/main/resources/templates/products.html b/src/main/resources/templates/products.html new file mode 100644 index 0000000..4db7f21 --- /dev/null +++ b/src/main/resources/templates/products.html @@ -0,0 +1,84 @@ + + +
+ + +
+ +
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Фильтры
Название + +
Высота + от + до +
Ширина + от + до +
Глубина + от + до +
+
+ + + + + + + + + + + + + + + + + +
НазваниеГабариты (В*Ш*Г)
Данному фильтру не удовлетворяет ни одного продукта.
+ + + + + +
+
+ +
+
+ + \ No newline at end of file diff --git a/src/main/resources/templates/storage.html b/src/main/resources/templates/storage.html new file mode 100644 index 0000000..975af0f --- /dev/null +++ b/src/main/resources/templates/storage.html @@ -0,0 +1,82 @@ + + +
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + +
Фильтры
Название + +
Статус + +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
НазваниеЛокацияКоличествоВремя размещенияСтатус хранения
Данному фильтру не удовлетворяет ни одного хранящегося продукта.
+ + + + + + + + + + + +
+
+ +
+
+ + \ No newline at end of file -- cgit mrf-deployment