git-svn-id: http://xe-core.googlecode.com/svn/trunk@1062 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-10 03:38:27 +00:00
parent 8833885ea0
commit bf19a8cf2a
15 changed files with 187 additions and 32 deletions

View file

@ -1,5 +1,4 @@
<!--%import("filter/delete_checked_document.xml")-->
<!--%import("filter/move_checked_document.xml")-->
<!--%import("filter/manage_checked_document.xml")-->
<!--%import("js/board_admin.js")-->
<div style="width:400px">
@ -8,19 +7,21 @@
<!--@if(count($document_list))-->
<form action="./" method="get">
<form action="./" method="get" id="fo_management">
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="type" value="" />
<div>{$lang->checked_count} : {count($document_list)}</div>
<div><a href="#" onclick="delete_checked_document(); return false;">{$lang->cmd_delete}</a></div>
<div><a href="#" onclick="doManageDocument('delete');return false;">{$lang->cmd_delete}</a></div>
<div>
<select name="board_list">
<select name="target_board">
<!--@foreach($board_list as $key => $val)-->
<!--@if($module_srl != $val->module_srl)-->
<option value="{$val->module_srl}">{$val->browser_title} ({$val->mid})</option>
<!--@end-->
<!--@end-->
</select>
<a href="#" onclick="move_checked_document(); return false;">{$lang->cmd_move}</a>
<a href="#" onclick="doManageDocument('move');return false;">{$lang->cmd_move}</a>
</div>
</form>