28 lines
1.5 KiB
HTML
28 lines
1.5 KiB
HTML
<ul>
|
|
{section name=c_list loop=$category}
|
|
<li><a href="?catid={$category[c_list].category_id}">{$category[c_list].category_name}</a></li>
|
|
{/section}
|
|
</ul>
|
|
|
|
<a href="create_group.php">Create a New Group</a>
|
|
|
|
{section name=gp_list loop=$gps}
|
|
{assign var=owner value=$userquery->GetUserData($gps[gp_list].group_owner)}
|
|
{assign var=stats value=$groups->group_stats($gps[gp_list].group_id)}
|
|
<div class="clearfix" style="width:800px;border:1px solid #ccc; background:#f3f3f3; padding:6px; margin:0px auto 20px; position:relative;">
|
|
<div style="padding:3px; border:1px solid lightblue; float:left; margin-right:10px; background:#FFF;">
|
|
<img src="{$gp_thumbs_url}/{$groups->get_gp_thumb($gps[gp_list].group_image)}" />
|
|
</div>
|
|
<small style="display:block;"><strong>{$gps[gp_list].group_name}</strong></small>
|
|
<small style="display:block;">{$gps[gp_list].group_description}</small>
|
|
<div style="margin:2px 0px; height:1px;"></div>
|
|
<ul>
|
|
<li><small><strong>Owner</strong>: <a href="?uid={$owner.userid}">{$owner.username}</a></small></li>
|
|
<li><small><strong>Total Member(s)</strong>: {$stats.total_members}</small></li>
|
|
<li><small><strong>Total Topics(s)</strong>: {$stats.total_topics}</small></li>
|
|
<li><small><strong>Created on</strong>: {$gps[gp_list].date_created}</small></li>
|
|
<div style="position:absolute; top:5px; right:15px;">
|
|
<small><a href="view_group.php?url={$gps[gp_list].group_url}">View Group</a></small></div>
|
|
</div>
|
|
{/section}
|
|
|