2012-05-18 06:33:34 +02:00
|
|
|
<form $FormAttributes>
|
|
|
|
|
|
|
|
<% 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>
|
|
|
|
|
|
|
|
<% if Actions %>
|
|
|
|
<div class="Actions">
|
|
|
|
<% loop Actions %>
|
|
|
|
$Field
|
|
|
|
<% end_loop %>
|
2012-10-05 05:27:13 +02:00
|
|
|
<% 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 %>
|
2012-05-18 06:33:34 +02:00
|
|
|
</div>
|
|
|
|
<% end_if %>
|
2012-05-18 06:47:12 +02:00
|
|
|
</form>
|