Файл: whmcs/templates/default/clientareaemails.tpl
Строк: 39
{include file="$template/pageheader.tpl"
title=$LANG.clientareaemails
desc=$LANG.emailstagline}
<p>{$numitems} {$LANG.recordsfound},
{$LANG.page} {$pagenumber} {$LANG.pageof} {$totalpages}</p>
<br
/>
<table class="table table-striped table-framed">
<thead>
<tr>
<th{if $orderby eq
"date"} class="headerSort{$sort}"{/if}><a
href="clientarea.php?action=emails&orderby=date">{$LANG.clientareaemailsdate}</a></th>
<th{if $orderby eq "subject"}
class="headerSort{$sort}"{/if}><a
href="clientarea.php?action=emails&orderby=subject">{$LANG.clientareaemailssubject}</a></th>
<th> </th>
</tr>
</thead>
<tbody>
{foreach from=$emails item=email}
<tr>
<td>{$email.date}</td>
<td>{$email.subject}</td>
<td
class="textcenter"><input type="button"
class="btn btn-info" value="{$LANG.emailviewmessage}"
onclick="popupWindow('viewemail.php?id={$email.id}','emlmsg',650,400)"
/></td>
</tr>
{foreachelse}
<tr>
<td colspan="3"
class="textcenter">{$LANG.norecordsfound}</td>
</tr>
{/foreach}
</tbody>
</table>
<div
class="pagination">
<ul>
<li
class="prev{if !$prevpage} disabled{/if}"><a href="{if
$prevpage}clientarea.php?action=emails&page={$prevpage}{else}javascript:return
false;{/if}">← {$LANG.previouspage}</a></li>
<li class="next{if !$nextpage} disabled{/if}"><a
href="{if
$nextpage}clientarea.php?action=emails&page={$nextpage}{else}javascript:return
false;{/if}">{$LANG.nextpage} →</a></li>
</ul>
</div>