I would like to know whether it is possible to add a zero before single digits on smarty.
Normaly in PHP when i add below code it will count from 1-9 with a zero (Ex: 01, 02, 03 so on)
printf("%02d", $i++);
But with im not sure how to apply this. Smarty {counter}
will simply count 1, 2, 3 etc.
Any advice is highly appropriated.