rhymix/modules/layout/tpl/copy_layout.html
2012-10-24 08:17:06 +00:00

35 lines
1.3 KiB
HTML

<script>
var addLang = '{$lang->cmd_insert}';
</script>
<form action="./" method="post" id="__layout_copy">
<div class="x_modal-header">
<h3>{$lang->cmd_layout_copy}</h3>
</div>
<div class="x_modal-body x_form-horizontal">
<input type="hidden" name="layout" value="{$layout->layout}" />
<input type="hidden" name="act" value="procLayoutAdminCopyLayout" />
<input type="hidden" name="layout_srl" value="{$layout->layout_srl}" />
<div class="x_control-group">
<div class="x_control-label">{$lang->layout_name}</div>
<div class="x_controls">{$layout->title}</div>
</div>
<div class="x_control-group">
<div class="x_control-label">{$lang->title}</div>
<div class="x_controls">{$layout->layout_title}</div>
</div>
<div class="x_control-group">
<label class="x_control-label" for="">{$lang->new_title}</label>
<div class="x_controls">
<span class="x_input-append">
<input type="text" name="title[]" required placeholder="{$layout->layout_title}" />
<input type="button" value="{$lang->cmd_insert}" onclick="addLayoutCopyInputbox()" class="x_btn" />
</span>
</div>
</div>
</div>
<div class="x_modal-footer">
<button type="button" class="x_btn x_pull-left" data-hide="#__layout_copy">{$lang->cmd_close}</button>
<input type="submit" value="{$lang->cmd_save}" class="x_btn x_btn-primary x_pull-right" />
</div>
</form>