mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
20 lines
684 B
Scheme
20 lines
684 B
Scheme
<ul class="stepIndicator current-$CurrentStep.class">
|
|
<% loop $AllStepsLinear %>
|
|
<li class="$ClassName<% if $LinkingMode %> $LinkingMode<% end_if %><% if $FirstLast %> $FirstLast<% end_if %><% if $ExtraClasses %> $ExtraClasses<% end_if %>">
|
|
<% if $LinkingMode = current %>
|
|
<% else %>
|
|
<% if $ID %>
|
|
<a href="$Link">
|
|
<% end_if %>
|
|
<% end_if %>
|
|
|
|
<% if $Title %>$Title<% else %>$ClassName<% end_if %>
|
|
|
|
<% if $LinkingMode = current %>
|
|
<% else %>
|
|
<% if $ID %></a><% end_if %>
|
|
<% end_if %>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|