Merge branch '4.2' into 4

This commit is contained in:
Robbie Averill 2018-08-15 13:23:27 +12:00
commit b22f33ae84
2 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ switch between pages:
...
<% end_if %>
<% end_if %>
<% end_loop %>
<% end_loop %>
<% if $PaginatedPages.NotLastPage %>
<a class="next" href="$PaginatedPages.NextLink">Next</a>
<% end_if %>

View File

@ -1,12 +1,12 @@
<ul>
<% loop $Forms %>
<li>
<a href="#{$FormName}">$AuthenticatorName</a>
<a href="#{$FormName}_Tab">$AuthenticatorName</a>
</li>
<% end_loop %>
</ul>
<% loop $Forms %>
<div class="form-tab" id="{$FormName}">
<div class="form-tab" id="{$FormName}_Tab">
<h3>$AuthenticatorName</h3>
$forTemplate
</div>