Notification app comes with the useful set of the dynamic attributes which can be found in Template Guide of your notification app:
Here you will find the complete list of variables that can be used for your notifications.
Some of the variables need to be used in a "for loop" to display output value, for example:
{% for payment in booking.payments %}
{{ payment.amount | money: payment.currency, format: "default" }}
{% endfor %}
If you use only {% payment %}
it won't display correctly and could show an empty value
Comments
0 comments
Please sign in to leave a comment.