I'm using a partial helper as;
{<subTemplate}
{type}
{minute}
{count}
{/subTemplate}
{@partial type=type minute=minute count=count}
{+sub_template/}
{/partial}
but as you can see for any field I want to use in my subTemplate, I need to add to the partial declaration. I tried
{@partial record=.}
{+sub_template/}
{/partial}
but doesn't seem to work.
Any ideas?