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.
31 lines
892 B
31 lines
892 B
<!-- $Id: brand_list.htm 6698 2007-03-09 07:00:45Z liry $ -->
|
|
{if $full_page}
|
|
{include file="pageheader.htm"}
|
|
{insert_scripts files="../js/utils.js,listtable.js"}
|
|
<form method="post" action="" name="listForm">
|
|
<!-- start brand list -->
|
|
<div class="list-div" id="listDiv">
|
|
{/if}
|
|
|
|
<table class="table table-bordered"> <tr>
|
|
<th>名称</th>
|
|
<th>下属分类</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
{foreach from=$diy_list item=diy}
|
|
<tr>
|
|
<td class="first-cell" align="center">{$diy.diy_name}
|
|
</td>
|
|
<td align="center">{$diy.diy_cat}</td>
|
|
<td align="center"><a href="diy.php?act=add&code={$diy.diy_code}">修改下属分类</a></td>
|
|
</tr>
|
|
{/foreach}
|
|
<tr>
|
|
<td align="right" nowrap="true" colspan="6">
|
|
{include file="page.htm"}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
{include file="pagefooter.htm"} |