20 lines
611 B
Smarty
20 lines
611 B
Smarty
<div class="order-process">
|
|
{$visited = true}
|
|
{foreach $body.steps as $stepName => $step}
|
|
{if $stepName == $body.stepName}{$visited = false}{/if}
|
|
{if $visited}
|
|
<a href="/{$step.url}" class="order-process-step visited">
|
|
{$step.title nofilter}
|
|
</a>
|
|
{else}
|
|
<div class="order-process-step {if $step.selected}active{/if}">
|
|
{$step.title nofilter}
|
|
</div>
|
|
{/if}
|
|
{/foreach}
|
|
|
|
<div class="order-process-step order-process-laststep{if $last_step} active{/if}">
|
|
{t}Odesláno{/t}
|
|
</div>
|
|
</div>
|