2013-07-13 13:00:46 +02:00
|
|
|
<% if $IncludeFormTag %>
|
2012-02-16 17:37:46 +01:00
|
|
|
<form $FormAttributes data-layout-type="border">
|
2011-06-08 01:35:56 +02:00
|
|
|
<% end_if %>
|
|
|
|
<div class="cms-content-header north">
|
2012-06-06 14:35:07 +02:00
|
|
|
<div class="cms-content-header-info">
|
2012-11-12 06:11:15 +01:00
|
|
|
<% include BackLink_Button %>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% with $Controller %>
|
2012-02-14 16:01:26 +01:00
|
|
|
<% include CMSBreadcrumbs %>
|
2012-11-12 06:11:15 +01:00
|
|
|
<% end_with %>
|
2011-06-08 01:35:56 +02:00
|
|
|
</div>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% if $Fields.hasTabset %>
|
|
|
|
<% with $Fields.fieldByName('Root') %>
|
2012-11-06 10:53:20 +01:00
|
|
|
<div class="cms-content-header-tabs cms-tabset-nav-primary">
|
2012-06-06 14:35:07 +02:00
|
|
|
<ul>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% loop $Tabs %>
|
|
|
|
<li<% if $extraClass %> class="$extraClass"<% end_if %>><a href="#$id">$Title</a></li>
|
2012-06-06 14:35:07 +02:00
|
|
|
<% end_loop %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<% end_with %>
|
|
|
|
<% end_if %>
|
|
|
|
|
|
|
|
<!-- <div class="cms-content-search">...</div> -->
|
2011-04-22 13:33:03 +02:00
|
|
|
</div>
|
2012-02-15 13:39:45 +01:00
|
|
|
|
2013-07-13 13:00:46 +02:00
|
|
|
<% with $Controller %>
|
2012-05-11 03:49:20 +02:00
|
|
|
$EditFormTools
|
|
|
|
<% end_with %>
|
2012-02-11 02:00:51 +01:00
|
|
|
|
2012-07-06 04:48:15 +02:00
|
|
|
<div class="cms-content-fields center <% if not $Fields.hasTabset %>cms-panel-padded<% end_if %>">
|
2013-07-13 13:00:46 +02:00
|
|
|
<% if $Message %>
|
2012-02-15 13:39:45 +01:00
|
|
|
<p id="{$FormName}_error" class="message $MessageType">$Message</p>
|
|
|
|
<% else %>
|
|
|
|
<p id="{$FormName}_error" class="message $MessageType" style="display: none"></p>
|
|
|
|
<% end_if %>
|
2011-04-15 05:32:43 +02:00
|
|
|
|
2012-02-15 13:39:45 +01:00
|
|
|
<fieldset>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% if $Legend %><legend>$Legend</legend><% end_if %>
|
|
|
|
<% loop $Fields %>
|
2012-02-15 13:39:45 +01:00
|
|
|
$FieldHolder
|
2012-05-11 03:49:20 +02:00
|
|
|
<% end_loop %>
|
2012-02-15 13:39:45 +01:00
|
|
|
<div class="clear"><!-- --></div>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
2011-04-15 05:32:43 +02:00
|
|
|
|
2012-11-22 04:30:50 +01:00
|
|
|
<div class="cms-content-actions cms-content-controls south">
|
2013-07-13 13:00:46 +02:00
|
|
|
<% if $Actions %>
|
2012-02-15 13:39:45 +01:00
|
|
|
<div class="Actions">
|
2013-07-13 13:00:46 +02:00
|
|
|
<% loop $Actions %>
|
2012-02-15 13:39:45 +01:00
|
|
|
$Field
|
2012-05-11 03:49:20 +02:00
|
|
|
<% end_loop %>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% if $Controller.LinkPreview %>
|
2012-04-18 22:59:18 +02:00
|
|
|
<a href="$Controller.LinkPreview" class="cms-preview-toggle-link ss-ui-button" data-icon="preview">
|
2012-02-15 13:39:45 +01:00
|
|
|
<% _t('LeftAndMain.PreviewButton', 'Preview') %> »
|
|
|
|
</a>
|
2011-12-20 15:56:08 +01:00
|
|
|
<% end_if %>
|
2011-05-20 01:38:36 +02:00
|
|
|
</div>
|
2012-02-15 13:39:45 +01:00
|
|
|
<% end_if %>
|
2011-05-20 01:38:36 +02:00
|
|
|
</div>
|
2013-07-13 13:00:46 +02:00
|
|
|
<% if $IncludeFormTag %>
|
2011-06-08 01:35:56 +02:00
|
|
|
</form>
|
2012-05-11 03:49:20 +02:00
|
|
|
<% end_if %>
|