Read variable value from HTML (ui_template)

Hello,
i'm using ui_template for simple welcome popup on program startup, i like show welcome message and SW version, the value is stored in global variable named "versione".
I have used the this sintax, but doens't work, variable field still empyt.
Where i'm wrong ?

<p>Firmware Version:{{global.get("versione")}}</p>

thank for help.

Context vars are server side, you can not access them in the browser. Move the context var to a msg property prior to the template node.

Ok noted, i will try to sent from msg.payload
thank