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.
41 lines
1.5 KiB
41 lines
1.5 KiB
{template 'header'}
|
|
<div class="m">
|
|
<div class="nav"><span class="f_r"><a href="{$MODULE[2][linkurl]}{$DT[file_my]}?mid={$moduleid}&job=group&action=add&catid={$catid}" class="b">创建商圈</a></span><a href="{$MODULE[1][linkurl]}">首页</a> <i>></i> <a href="{$MOD[linkurl]}">{$MOD[name]}</a> <i>></i> {cat_pos($CAT, ' <i>></i> ')}</div>
|
|
</div>
|
|
<div class="m">
|
|
<div class="group_list" style="background:#fff">
|
|
<table cellpadding="16" cellspacing="0" class="tb">
|
|
<tr>
|
|
<th width="48"></th>
|
|
<th>商圈</th>
|
|
<th width="100">主题</th>
|
|
<th width="100">粉丝</th>
|
|
<th width="100">圈主</th>
|
|
<th width="100">版主</th>
|
|
</tr>
|
|
{loop $tags $k $t}
|
|
<tr bgcolor="#FFFFFF" align="center">
|
|
<td><a href="{$t[linkurl]}"><img src="{$t[thumb]}" width="48" alt="{$t[alt]}"/></a></td>
|
|
<td align="left"><a href="{$t[linkurl]}" title="{$t[alt]}" class="px14"><strong>{$t[title]}</strong>{$MOD[seo_name]}</a>{if $t[introduce]}<p>{$t[introduce]}</p>{/if}</td>
|
|
<td>{$t[post]}</td>
|
|
<td>{$t[fans]}</td>
|
|
<td><a href="{userurl($t[username])}" target="_blank">{$t[username]}</a></td>
|
|
<td>
|
|
<select onchange="if(this.value)window.open(this.value);">
|
|
{if $t[managers]}
|
|
<option value="">版主列表</option>
|
|
{loop $t[managers] $manager}
|
|
<option value="{userurl($manager)}">{$manager}</option>
|
|
{/loop}
|
|
{else}
|
|
<option value="">暂无版主</option>
|
|
{/if}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
</table>
|
|
</div>
|
|
{if $showpage && $pages}<div class="pages">{$pages}</div>{/if}
|
|
</div>
|
|
{template 'footer'}
|