dynamic — Marks the contents of the block as dynamic. Which means that it will not be cached.
{dynamic}
...{/dynamic}
tagWhere template is:
{dynamic}
{math equation="10*(2/5)" assign=amount}
{dump $amount}
{math equation="10*(2/5)" assign=rate}
{$rate|dump}
{/dynamic}
The above example will output:
4.0
6.0