관리자 페이지 패키지별 UI 적용을 위한 1차 작업 마무리

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4616 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-10-15 11:10:08 +00:00
parent 856ab513ec
commit ba4e9e26e2
248 changed files with 3520 additions and 3424 deletions

View file

@ -8,45 +8,41 @@
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="{$act}" />
<table cellspacing="0" class="adminTable">
<col />
<col />
<col />
<col width="50" />
<select name="module_category_srl" class="w5">
<option value="">{$lang->module_category}</option>
<!--@foreach($module_category as $key => $val)-->
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select>
<select name="target_module" class="w5">
<option value="">{$lang->module}</option>
<!--@foreach($module_list as $key => $val)-->
<option value="{$val->module}" <!--@if($target_module ==$val->module)-->selected="selected"<!--@end-->>{$val->module}</option>
<!--@end-->
</select>
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
<table cellspacing="0" class="adminTable topGap">
<thead>
<tr>
<th scope="row" colspan="2" class="nowrap">
<select name="module_category_srl" class="w5">
<option value="">{$lang->module_category}</option>
<!--@foreach($module_category as $key => $val)-->
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select>
<select name="target_module" class="w5">
<option value="">{$lang->module}</option>
<!--@foreach($module_list as $key => $val)-->
<option value="{$val->module}" <!--@if($target_module ==$val->module)-->selected="selected"<!--@end-->>{$val->module}</option>
<!--@end-->
</select>
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
</th>
<th scope="row">{$lang->mid}</th>
<th scope="row">{$lang->cmd_select}</th>
<th scope="row"><div>{$lang->module_category}</div></th>
<th scope="row"><div>{$lang->module}</div></th>
<th scope="row" class="wide"><div>{$lang->mid}</div></th>
<th scope="row"><div>{$lang->cmd_select}</div></th>
</tr>
</thead>
<tbody>
<!--@foreach($mid_list as $key => $val)-->
<tr>
<td>
<td class="nowrap center">
<!--@if(!$val->module_category_srl)-->
{$lang->not_exists}
<!--@else-->
{$module_category[$val->module_category_srl]->title}
<!--@end-->
</td>
<td class="tahoma">{$val->module}</td>
<td class="tahoma">{$val->browser_title} ({$key})</td>
<td class="blue"><a href="#" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</a></td>
<td class="center nowrap">{$val->module}</td>
<td>{$val->browser_title} ({$key})</td>
<td class="modify center"><a href="#" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</a></td>
</tr>
<!--@end-->
</tbody>