mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
5a59c4f4b4
API Add bootstrap button template BUG fix draft / published preview selector
63 lines
1.8 KiB
Scheme
63 lines
1.8 KiB
Scheme
<% if $IncludeFormTag %>
|
|
<form $FormAttributes data-layout-type="border">
|
|
<% end_if %>
|
|
<div class="toolbar toolbar--north cms-content-header">
|
|
<div class="cms-content-header-info">
|
|
<% include SilverStripe\\Admin\\BackLink_Button %>
|
|
<% with $Controller %>
|
|
<% include SilverStripe\\Admin\\CMSBreadcrumbs %>
|
|
<% end_with %>
|
|
</div>
|
|
<% if $Fields.hasTabset %>
|
|
<% with $Fields.fieldByName('Root') %>
|
|
<div class="cms-content-header-tabs cms-tabset-nav-primary">
|
|
<ul>
|
|
<% loop $Tabs %>
|
|
<li<% if $extraClass %> class="$extraClass"<% end_if %>><a href="#$id">$Title</a></li>
|
|
<% end_loop %>
|
|
</ul>
|
|
</div>
|
|
<% end_with %>
|
|
<% end_if %>
|
|
|
|
<!-- <div class="cms-content-search">...</div> -->
|
|
</div>
|
|
|
|
<% with $Controller %>
|
|
$EditFormTools
|
|
<% end_with %>
|
|
|
|
<div class="panel panel--padded cms-content-fields panel--double-toolbar <% if not $Fields.hasTabset %>cms-panel-padded<% end_if %>">
|
|
<% if $Message %>
|
|
<p id="{$FormName}_error" class="message $MessageType">$Message</p>
|
|
<% else %>
|
|
<p id="{$FormName}_error" class="message $MessageType" style="display: none"></p>
|
|
<% end_if %>
|
|
|
|
<fieldset>
|
|
<% if $Legend %><legend>$Legend</legend><% end_if %>
|
|
<% loop $Fields %>
|
|
$FieldHolder
|
|
<% end_loop %>
|
|
<div class="clear"><!-- --></div>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div class="toolbar--south cms-content-actions cms-content-controls south">
|
|
<% if $Actions %>
|
|
<div class="btn-toolbar">
|
|
<% loop $Actions %>
|
|
$FieldHolder
|
|
<% end_loop %>
|
|
<% if $Controller.LinkPreview %>
|
|
<a href="$Controller.LinkPreview" class="cms-preview-toggle-link ss-ui-button" data-icon="preview">
|
|
<%t LeftAndMain.PreviewButton 'Preview' %> »
|
|
</a>
|
|
<% end_if %>
|
|
</div>
|
|
<% end_if %>
|
|
</div>
|
|
<% if $IncludeFormTag %>
|
|
</form>
|
|
<% end_if %>
|