You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.5 KiB

3 years ago
{if $full_page}
<!-- $Id: users_list.htm 17053 2010-03-15 06:50:26Z sxc_shop $ -->
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}
<form method="POST" action="" name="listForm" onsubmit="return confirm_bath()">
<!-- start users list -->
<div class="list-div" id="listDiv">
{/if}
<!--用户列表部分-->
<table cellpadding="0" cellspacing="0">
<tr>
<th>
<input onclick='listTable.selectAll(this, "checkboxes")' type="checkbox">
<a href="javascript:listTable.sort('id'); ">{$lang.record_id}</a>{$sort_id}
</th>
<th>{$lang.bucket}</th>
<th>{$lang.regional}</th>
<th>{$lang.is_cname}</th>
<th>{$lang.outside_site}</th>
<th>{$lang.inside_site}</th>
<th>{$lang.is_use}</th>
<th>{$lang.handler}</th>
<tr>
{foreach from=$bucket_list item=bucket}
<tr>
<td><input type="checkbox" name="checkboxes[]" value="{$bucket.id}" />{$bucket.id}</td>
<td align="center">{$bucket.bucket}</td>
<td align="center">{$bucket.regional_name}</td>
<td align="center">{if $bucket.is_cname}是<br/><font style="color:#F00">(域名:{$bucket.endpoint})</font>{else}否{/if}</td>
<td align="center">{$bucket.outside_site}</td>
<td align="center">{$bucket.inside_site}</td>
<td align="center"><img src="images/{if $bucket.is_use}yes{else}no{/if}.gif" /></td>
<td align="center">
<a href="oss_configure.php?act=edit&id={$bucket.id}" title="{$lang.edit}"><img src="images/icon_edit.gif" border="0" height="21" width="21" /></a>
<a href="javascript:confirm_redirect('{$lang.remove_confirm}', 'oss_configure.php?act=remove&id={$bucket.id}')" title="{$lang.remove}"><img src="images/icon_drop.gif" border="0" height="21" width="21" /></a>
</td>
</tr>
{foreachelse}
<tr><td class="no-records" colspan="11">{$lang.no_records}</td></tr>
{/foreach}
<tr>
<td colspan="2">
<input type="hidden" name="act" value="batch_remove" />
<input type="submit" id="btnSubmit" value="{$lang.button_remove}" disabled="true" class="button" /></td>
<td align="right" nowrap="true" colspan="11">
{include file="page.htm"}
</td>
</tr>
</table>
{if $full_page}
</div>
<!-- end users list -->
</form>
<script type="text/javascript" language="JavaScript">
<!--
listTable.recordCount = {$record_count};
listTable.pageCount = {$page_count};
{foreach from=$filter item=item key=key}
listTable.filter.{$key} = '{$item}';
{/foreach}
{literal}
</script>
{/literal}
{include file="pagefooter.htm"}
3 years ago
{/if}