Admin HTML Markup Clean.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9371 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2011-09-27 09:50:44 +00:00
parent 773c18bde2
commit 12ca869ccd
75 changed files with 2992 additions and 3093 deletions

View file

@ -1,59 +1,54 @@
<!--%import("filter/manage_checked_document.xml")-->
<load target="js/document_admin.js" usecdn="true" />
<load target="css/document.css" usecdn="true" />
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->cmd_manage_document}</h3>
</div>
<h1 class="h1">{$lang->cmd_manage_document}</h1>
<form action="./" method="get" id="fo_management">
<input type="hidden" name="type" value="" />
<!--@if(count($document_list)==0)-->
<div id="popBody">
{$lang->msg_not_selected_document}
</div>
<!--@else-->
<div id="popBody">
<table cellspacing="0" class="rowTable">
<tr>
<th scope="row"><div><label for="textfield1">{$lang->checked_count} ({count($document_list)})</label></div></th>
<td>
<input type="checkbox" onclick="XE.checkboxToggleAll()" checked="checked"/> {$lang->cmd_select}
<ul class="document_list_box">
<!--@foreach($document_list as $key => $document)-->
<li class="document_list"><input type="checkbox" checked="checked" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this);"/> <address>{$document->getNickName()}</address> <span class="document_title">{$document->getTitle()}</span></li>
<!--@end-->
</ul>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->move_target_module}</div></th>
<td>
<input type="hidden" name="target_module" id="target_module" value="{$module_srl}" />
<input type="text" name="_target_module" id="_target_module" class="inputTypeText w300" value="{$mid} ({$browser_title})" readonly="readonly" /><a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single')}" onclick="popopen(this.href,'ModuleSelect');return false;" class="button green"><span>{$lang->cmd_select}</span></a>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->category}</div></th>
<td>
<select id="target_category" name="target_category" class="w400">
</select>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->cmd_send_message}</div></th>
<td>
<textarea name="message_content" class="inputTypeTextArea w400" cols="45" rows="5"></textarea>
</td>
</tr>
</table>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row"><label for="textfield1">{$lang->checked_count} ({count($document_list)})</label></th>
<td>
<input type="checkbox" onclick="XE.checkboxToggleAll()" checked="checked"/> {$lang->cmd_select}
<ul class="document_list_box">
<!--@foreach($document_list as $key => $document)-->
<li class="document_list"><input type="checkbox" checked="checked" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this);"/> <address>{$document->getNickName()}</address> <span class="document_title">{$document->getTitle()}</span></li>
<!--@end-->
</ul>
</td>
</tr>
<tr>
<th scope="row">{$lang->move_target_module}</th>
<td>
<input type="hidden" name="target_module" id="target_module" value="{$module_srl}" />
<input type="text" name="_target_module" id="_target_module" value="{$mid} ({$browser_title})" readonly="readonly" /><a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single')}" onclick="popopen(this.href,'ModuleSelect');return false;" class="button green"><span>{$lang->cmd_select}</span></a>
</td>
</tr>
<tr>
<th scope="row">{$lang->category}</th>
<td>
<select id="target_category" name="target_category">
</select>
</td>
</tr>
<tr>
<th scope="row">{$lang->cmd_send_message}</th>
<td>
<textarea name="message_content" cols="45" rows="5"></textarea>
</td>
</tr>
</table>
</div>
<div id="popFooter">
<a href="#" onclick="doManageDocument('trash');return false;" class="button red"><span>{$lang->cmd_trash}</span></a>
<a href="#" onclick="doManageDocument('delete');return false;" class="button black strong"><span>{$lang->cmd_delete}</span></a>
<a href="#" onclick="doManageDocument('move');return false;" class="button blue"><span>{$lang->cmd_move}</span></a>
<a href="#" onclick="doManageDocument('copy');return false;" class="button green"><span>{$lang->cmd_copy}</span></a>
<div class="btnArea">
<button type="button" onclick="doManageDocument('trash');">{$lang->cmd_trash}</button>
<button type="button" onclick="doManageDocument('delete');">{$lang->cmd_delete}</button>
<button type="button" onclick="doManageDocument('move');">{$lang->cmd_move}</button>
<button type="button" onclick="doManageDocument('copy');">{$lang->cmd_copy}</button>
</div>
<script type="text/javascript">