Add examples, minor details to node networks

This commit is contained in:
Robin van der Linde 2023-10-21 18:44:09 +02:00
parent d92dff76e0
commit fb3c37f558
Signed by untrusted user: Robin-van-der-Linde
GPG key ID: 53956B3252478F0D
9 changed files with 148 additions and 16 deletions

View file

@ -48,6 +48,50 @@
}
],
"tagRenderings": [
"images"
"images",
{
"id": "type",
"question": {
"en": "What kind of routes are shown on this guidepost?"
},
"multiAnswer": true,
"mappings": [
{
"if": "bicycle=yes",
"ifnot": "bicycle=",
"then": {
"en": "This guidepost shows bicycle routes"
}
},
{
"if": "hiking=yes",
"ifnot": "hiking=",
"then": {
"en": "This guidepost shows hiking routes"
}
},
{
"if": "mtb=yes",
"ifnot": "mtb=",
"then": {
"en": "This guidepost shows mountain bike routes"
}
},
{
"if": "horse=yes",
"ifnot": "horse=",
"then": {
"en": "This guidepost shows horse riding routes"
}
},
{
"if": "ski=yes",
"ifnot": "ski=",
"then": {
"en": "This guidepost shows ski routes"
}
}
]
}
]
}
}