Enduro
Enduro copied to clipboard
Relations 1-n between Content files
Hey there,
thx for ypu work, nice looking cms!
one question: can I get a dropdown inside my content file "products" of my content file "groups" something like @@goup.by-id('aaa')
({
group: [
{
id: 'aaa',
label: 'Group A'
},
{
id: 'bbb',
label: 'Group B'
}
]
})
({
product: [
{
id: 'p1',
label: 'Product A',
group: '@@groups.@id{aaa}'
},
{
id: 'p2',
label: 'Product B',
group: '@@groups.@id{aaa}'
},
{
id: 'p3',
label: 'Product C',
group: '@@groups.@id{bbb}'
}
]
})
thx!!
Greetings crazyx13th