I know that editing the template is what i need to do but i cant seem to get the values to list:
Code: Select all
<hr width="50%" align="left"/>
<div class="pageoptions">
<p>{$numusers} {$usersingroup}</p>
<p>{$itemcount} {$usersfound}</p>
{if $itemcount > 0}
<table cellspacing="0" class="pagetable">
<thead>
<tr>
<th>{$usernametext}</th>
<th>{$createdtext}</th>
<th>{$expirestext}</th>
<th>{$emailtext}</th>
<th class="pageicon"> </th>
<th class="pageicon"> </th>
</tr>
</thead>
<tbody>
{foreach from=$items item=entry}
<tr class="{$entry->rowclass}">
<td>{$entry->username}</td>
<td>{$entry->created}</td>
<td>{$entry->expires}</td>
<td>{$entry->email}</td>
<td>{$entry->editlink}</td>
<td>{$entry->deletelink}</td>
</tr>
{/foreach}
</tbody>
</table>
{/if}
<p>{$addlink}</p>
</div>Thanks in advance for your help.


