mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
Admin HTML Markup Clean.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9377 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
0634424830
commit
024a234f6a
74 changed files with 732 additions and 838 deletions
|
|
@ -33,44 +33,44 @@
|
|||
<h3 class="h3">{$lang->is_default}</h3>
|
||||
<div class="table">
|
||||
<table width="100%" border="1" cellspacing="0">
|
||||
<tr class="row2">
|
||||
<tr>
|
||||
<td>{$lang->point_signup}</td>
|
||||
<td>
|
||||
<input type="text" class="inputTypeText w80" value="{$config->signup_point}" name="signup_point" /> {$config->point_name}
|
||||
<input type="text" value="{$config->signup_point}" name="signup_point" /> {$config->point_name}
|
||||
<p>{$lang->about_point_signup}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang->cmd_login}</td>
|
||||
<td><input type="text" class="inputTypeText w80" value="{$config->login_point}" name="login_point" /> {$config->point_name}</td>
|
||||
<td><input type="text" value="{$config->login_point}" name="login_point" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<tr class="row2">
|
||||
<tr>
|
||||
<td>{$lang->point_insert_document}</td>
|
||||
<td><input type="text" name="insert_document" value="{$config->insert_document}" class="inputTypeText w80" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="insert_document" value="{$config->insert_document}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang->point_insert_comment}</td>
|
||||
<td><input type="text" name="insert_comment" value="{$config->insert_comment}" class="inputTypeText w80" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="insert_comment" value="{$config->insert_comment}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<tr class="row2">
|
||||
<tr>
|
||||
<td>{$lang->point_upload_file}</td>
|
||||
<td><input type="text" name="upload_file" value="{$config->upload_file}" class="inputTypeText w80" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="upload_file" value="{$config->upload_file}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang->point_download_file}</td>
|
||||
<td><input type="text" name="download_file" value="{$config->download_file}" class="inputTypeText w80" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="download_file" value="{$config->download_file}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<tr class="row2">
|
||||
<tr>
|
||||
<td>{$lang->point_read_document}</td>
|
||||
<td><input type="text" name="read_document" value="{$config->read_document}" class="inputTypeText w80" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="read_document" value="{$config->read_document}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lang->point_voted}</td>
|
||||
<td><input type="text" name="voted" value="{$config->voted}" class="inputTypeText w80" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="voted" value="{$config->voted}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<tr class="row2">
|
||||
<tr>
|
||||
<td>{$lang->point_blamed}</td>
|
||||
<td><input type="text" name="blamed" value="{$config->blamed}" class="inputTypeText w80" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="blamed" value="{$config->blamed}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
@ -122,15 +122,15 @@
|
|||
<table width="100%" border="1" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="half_wide"><div>{$lang->group}<div></th>
|
||||
<th class="half_wide"><div>{$lang->level}<div></th>
|
||||
<th>{$lang->group}</th>
|
||||
<th>{$lang->level}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<!--@foreach($group_list as $key => $val)-->
|
||||
<tr class="row{$cycle_idx}">
|
||||
<td class="center">{$val->title}</td>
|
||||
<td class="center"><input type="text" class="inputTypeText w80" value="{$config->point_group[$key]}" name="point_group_{$key}" /></td>
|
||||
<td>{$val->title}</td>
|
||||
<td><input type="text" value="{$config->point_group[$key]}" name="point_group_{$key}" /></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<tr class="row{$cycle_idx}">
|
||||
|
|
|
|||
|
|
@ -28,8 +28,8 @@
|
|||
<td>
|
||||
<form action="./" method="get">
|
||||
<input type="hidden" name="member_srl" value="{$val->member_srl}" />
|
||||
<input type="text" name="orgpoint" value="{$val->point}" class="inputTypeText w80" readonly />
|
||||
<input type="text" id="point_{$val->member_srl}" name="point" class="inputTypeText w80" />
|
||||
<input type="text" name="orgpoint" value="{$val->point}" readonly />
|
||||
<input type="text" id="point_{$val->member_srl}" name="point" />
|
||||
<span class="button"><input type="button" value="{$lang->cmd_update}" onclick="updatePoint({$val->member_srl})" /></span>
|
||||
</form>
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -20,17 +20,17 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<!--@foreach($mid_list as $key => $val)-->
|
||||
<tr class="row2">
|
||||
<tr>
|
||||
<th colspan="7" scope="col"><strong>{$val->browser_title}</strong> ({$val->mid})</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="text" name="insert_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_document']}" class="inputTypeText w40" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="insert_comment_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_comment']}" class="inputTypeText w40" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="upload_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['upload_file']}" class="inputTypeText w40" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="download_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['download_file']}" class="inputTypeText w40" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="read_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['read_document']}" class="inputTypeText w40" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="voted_{$val->module_srl}" value="{$module_config[$val->module_srl]['voted']}" class="inputTypeText w40" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="blamed_{$val->module_srl}" value="{$module_config[$val->module_srl]['blamed']}" class="inputTypeText w40" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="insert_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_document']}" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="insert_comment_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_comment']}" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="upload_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['upload_file']}" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="download_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['download_file']}" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="read_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['read_document']}" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="voted_{$val->module_srl}" value="{$module_config[$val->module_srl]['voted']}" /> {$config->point_name}</td>
|
||||
<td><input type="text" name="blamed_{$val->module_srl}" value="{$module_config[$val->module_srl]['blamed']}" /> {$config->point_name}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
|
|
|
|||
|
|
@ -9,31 +9,31 @@
|
|||
<table width="100%" border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th>{$lang->point_insert_document}</th>
|
||||
<td class="wide"><input type="text" name="insert_document" value="{$module_config['insert_document']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
|
||||
<td ><input type="text" name="insert_document" value="{$module_config['insert_document']}" /> {$module_config['point_name']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->point_insert_comment}</th>
|
||||
<td><input type="text" name="insert_comment" value="{$module_config['insert_comment']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
|
||||
<td><input type="text" name="insert_comment" value="{$module_config['insert_comment']}" /> {$module_config['point_name']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->point_upload_file}</th>
|
||||
<td><input type="text" name="upload_file" value="{$module_config['upload_file']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
|
||||
<td><input type="text" name="upload_file" value="{$module_config['upload_file']}" /> {$module_config['point_name']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->point_download_file}</th>
|
||||
<td><input type="text" name="download_file" value="{$module_config['download_file']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
|
||||
<td><input type="text" name="download_file" value="{$module_config['download_file']}" /> {$module_config['point_name']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->point_read_document}</th>
|
||||
<td><input type="text" name="read_document" value="{$module_config['read_document']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
|
||||
<td><input type="text" name="read_document" value="{$module_config['read_document']}" /> {$module_config['point_name']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->point_voted}</th>
|
||||
<td><input type="text" name="voted" value="{$module_config['voted']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
|
||||
<td><input type="text" name="voted" value="{$module_config['voted']}" /> {$module_config['point_name']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->point_blamed}</th>
|
||||
<td><input type="text" name="blamed" value="{$module_config['blamed']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
|
||||
<td><input type="text" name="blamed" value="{$module_config['blamed']}" /> {$module_config['point_name']}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue