diff --git a/shop.json b/shop.json
index 7e0d285e2..b480f9e1a 100644
--- a/shop.json
+++ b/shop.json
@@ -49,6 +49,17 @@
"{% else %}",
" {{ c|raw }}",
"{% endif %}"
+ ],
+ "body": [
+ "
",
+ " {% if tags.clothes %}",
+ " - ",
+ " ",
+ " {{ keyTrans('clothes') }}:",
+ " {{ tagTransList('clothes', tags.clothes) }}",
+ "
",
+ " {% endif %}",
+ "
"
]
},
"const": {
@@ -335,7 +346,37 @@
"mobile_phone": {
"sign": "fas:mobile-alt"
}
- }
+ },
+ "clothes": [
+ "women",
+ "men",
+ "leather",
+ "fur",
+ "underwear",
+ "children",
+ "wedding",
+ "sports",
+ "workwear",
+ "lingerie",
+ "babies",
+ "hats",
+ "fashion",
+ "suits",
+ "unisexs",
+ "traditional",
+ "costumes",
+ "bridal",
+ "oversize",
+ "swimwear",
+ "maternity",
+ "brand",
+ "military",
+ "vintage",
+ "accessories",
+ "schoolwear",
+ "motorcycle",
+ "denim"
+ ]
},
"filter": {
"shop": {
@@ -345,6 +386,13 @@
"values": "{% set list = [] %}{% for k, v in const.shops %}{% endfor %}",
"sort": "natsort",
"op": "has"
+ },
+ "clothes": {
+ "name": "{{ keyTrans('clothes') }}",
+ "type": "select",
+ "values": "{% set list = [] %}{% for k in const.clothes %}{% set list = list|merge([ k ]) %}{% endfor %}",
+ "sort": "natsort",
+ "op": "has"
}
}
}