mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
30 lines
639 B
Scheme
30 lines
639 B
Scheme
<% if $FirstLast == "first last" %>
|
|
<% else %>
|
|
<nav class="step-navigation" aria-hidden="true" style="display:none;">
|
|
<ul class="step-buttons">
|
|
<% if $FirstLast == "first" %>
|
|
<% else %>
|
|
<li class="step-button-wrapper">
|
|
<button class="step-button-prev">Prev</button>
|
|
</li>
|
|
<% end_if %>
|
|
|
|
<% if $FirstLast == "last" %>
|
|
|
|
<% if $ContainingPage.Actions %>
|
|
<% loop $ContainingPage.Actions %>
|
|
<li class="step-button-wrapper">
|
|
$Field
|
|
</li>
|
|
<% end_loop %>
|
|
<% end_if %>
|
|
|
|
<% else %>
|
|
<li class="step-button-wrapper">
|
|
<button class="step-button-next">Next</button>
|
|
</li>
|
|
<% end_if %>
|
|
</ul>
|
|
</nav>
|
|
<% end_if %>
|