mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ff39f9ad38
- Fixed jQuery.tabs remote tabs loading behaviour (see http://forum.jquery.com/topic/tabs-api-redesign)
32 lines
804 B
Scheme
32 lines
804 B
Scheme
<div class="cms-content cms-tabset center $BaseCSSClasses" data-layout-type="border" data-pjax-fragment="Content">
|
|
|
|
<div class="cms-content-header north">
|
|
<div class="cms-content-header-info">
|
|
<h2>
|
|
<% include CMSSectionIcon %>
|
|
<% if SectionTitle %>
|
|
$SectionTitle
|
|
<% else %>
|
|
<% _t('ModelAdmin.Title', 'Data Models') %>
|
|
<% end_if %>
|
|
</h2>
|
|
</div>
|
|
|
|
<div class="cms-content-header-tabs">
|
|
<ul>
|
|
<% loop ManagedModelTabs %>
|
|
<li class="tab-$ClassName $LinkOrCurrent<% if $LinkOrCurrent == 'current' %> ui-tabs-active<% end_if %>">
|
|
<a href="$Link" class="cms-panel-link">$Title</a>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cms-content-fields center ui-widget-content" data-layout-type="border">
|
|
$Tools
|
|
$EditForm
|
|
</div>
|
|
|
|
</div>
|