mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8286ba346e
Broke because the <form> tag was returned, while the client logic was expecting the whole <div> including the <form>. Fixed to display the button bar at the bottom, and tested with validation errors as well as switching from/to the panel via ajax.
27 lines
748 B
Scheme
27 lines
748 B
Scheme
<div id="settings-controller-cms-content" class="cms-content center cms-tabset $BaseCSSClasses" data-layout-type="border" data-pjax-fragment="Content">
|
|
|
|
<div class="cms-content-header north">
|
|
<% with $EditForm %>
|
|
<div class="cms-content-header-info">
|
|
<% with $Controller %>
|
|
<% include CMSBreadcrumbs %>
|
|
<% end_with %>
|
|
</div>
|
|
<% if $Fields.hasTabset %>
|
|
<% with $Fields.fieldByName('Root') %>
|
|
<div class="cms-content-header-tabs">
|
|
<ul class="cms-tabset-nav-primary">
|
|
<% loop $Tabs %>
|
|
<li<% if $extraClass %> class="$extraClass"<% end_if %>><a href="#$id">$Title</a></li>
|
|
<% end_loop %>
|
|
</ul>
|
|
</div>
|
|
<% end_with %>
|
|
<% end_if %>
|
|
<% end_with %>
|
|
</div>
|
|
|
|
$EditForm
|
|
|
|
</div>
|