Welcome to mirror list, hosted at ThFree Co, Russian Federation.

allSteps.tpl « templates « Installation « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa4bcf0063458fd86556fbfcae8d5f1297a0aca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
<ul>
    {foreach from=$allStepsTitle key=stepId item=stepName}
        {if $currentStepId > $stepId}
            <li class="pastStep">{$stepName|translate}</li>
        {elseif $currentStepId == $stepId}
            <li class="actualStep">{$stepName|translate}</li>
        {else}
            <li class="futureStep">{$stepName|translate}</li>
        {/if}
    {/foreach}
</ul>