/modules/layout/tpl/copy_layout.html UI cleaning.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11876 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-10-24 08:17:06 +00:00
parent 30905e199d
commit 5884854387
2 changed files with 27 additions and 33 deletions

View file

@ -1277,6 +1277,10 @@
<value xml:lang="vi"><![CDATA[Tiêu đề]]></value>
<value xml:lang="mn"><![CDATA[Гарчиг]]></value>
</item>
<item name="new_title">
<value xml:lang="ko"><![CDATA[새 제목]]></value>
<value xml:lang="en"><![CDATA[New Subject]]></value>
</item>
<item name="title_content">
<value xml:lang="ko"><![CDATA[제목+내용]]></value>
<value xml:lang="en"><![CDATA[Subject+Content]]></value>

View file

@ -2,44 +2,34 @@
var addLang = '{$lang->cmd_insert}';
</script>
<div class="x_modal" id="__layout_copy">
<form action="./" method="post" id="__layout_copy">
<div class="x_modal-header">
<h3>{$lang->cmd_layout_copy}</h3>
</div>
<div class="x_modal-body">
<form action="./" method="post">
<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}" />
<table class="x_table x_table-striped x_table-hover">
<tr>
<th scope="row">{$lang->layout_name}</th>
<td>{$layout->title}</td>
</tr>
<tr>
<th scope="row">{$lang->title}</th>
<td>{$layout->layout_title}</td>
</tr>
</table>
<table width="100%" border="1" cellspacing="0" id="inputTable">
<tr>
<th scope="col"><div>{$lang->title}<div></th>
<th scope="col"><div>{$lang->cmd_insert}</div></th>
</tr>
<tr>
<td><input type="text" name="title[]" size="50" /></td>
<td><span class="btn"><input type="button" value="{$lang->cmd_insert}" onclick="addLayoutCopyInputbox()" /></span></td>
</tr>
</table>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
<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>
</form>
</div>
</div>
<div class="x_modal-footer">
<button type="button" class="x_btn x_pull-left" data-hide="#__layout_copy">{$lang->cmd_close}</button>
<span class="x_btn-group x_pull-right">
<button type="submit" class="x_btn">{$lang->cmd_insert}</button>
</span>
<input type="submit" value="{$lang->cmd_save}" class="x_btn x_btn-primary x_pull-right" />
</div>
</div>
</form>