We are introducing template variables allowing you to use properties of cards in automations. This allows the automatic generation of forms, chats or notes that reference these properties.
Up to now, the syntax is very raw. The reference has to be embedded into ${woost.X}
, where X
is the relative path from the template. As a first example: To reference a property Department
in a chat message of the same card, you can use ${woost.parent.field.Department}
. You can understand it the following way: The parent
of the chat message is the card. The same is true for the property. Therefore, you reference the card (the parent
) and then choose a field
of the card with the name Department
.
For the wild: Using $@{woost.parent.field.Department}
you can automate mentions ;-)