Files
Froxlor/templates/Froxlor/admin/customers/customers_customer.tpl
Michael Kaufmann (d00p) d6b4bd8d36 add new images and templates for re-design
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
2011-02-08 10:30:03 +01:00

67 lines
2.0 KiB
Smarty

<tr>
<td>
<strong>
<if $row['name'] != '' && $row['firstname'] != ''>
{$row['name']}&nbsp;{$row['firstname']}
</if>
<if ($row['name'] == '' || $row['firstname'] == '') && $row['company'] != ''>
{$row['company']}
</if>
&nbsp;(<a href="$filename?s=$s&amp;page=$page&amp;action=su&amp;id={$row['customerid']}" rel="external">{$row['loginname']}</a>)
</strong>
</td>
<td rowspan="2">
<a href="$filename?s=$s&amp;page=$page&amp;action=edit&amp;id={$row['customerid']}" style="text-decoration:none;">
<img src="images/Froxlor/icons/edit.png" alt="{$lng['panel']['edit']}" />
</a>&nbsp;
<a href="$filename?s=$s&amp;page=$page&amp;action=delete&amp;id={$row['customerid']}" style="text-decoration:none;">
<img src="images/Froxlor/icons/delete.png" alt="{$lng['panel']['delete']}" />
</a>
</td>
</tr>
<tr>
<td>
<table class="overviewcustomerextras">
<tr>
<td style="width: 300px;">
Webspace:&nbsp;
<if $row['diskspace'] != 'UL'>
<span class="progressBar" title="{$row['diskspace_used']} / {$row['diskspace']} MB">
<if (($row['diskspace']/100)*90) < $row['diskspace_used']>
<span class="redbar">
<else>
<span>
</if>
<em style="left: {$doublepercent}px;">{$percent}%</em></span>
</span>
<else>
<span class="progressBar" title="{$lng['customer']['unlimited']}">
<span class="greybar"><em style="left: 200px;">100%</em></span>
</span>
</if>
</td>
<td style="width: 300px;">
Traffic:&nbsp;
<if $row['traffic'] != 'UL'>
<span class="progressBar" title="{$row['traffic_used']} / {$row['traffic']} GB">
<if (($row['traffic']/100)*90) < $row['traffic_used']>
<span class="redbar">
<else>
<span>
</if>
<em style="left: {$doublepercent}px;">{$percent}%</em></span>
</span>
<else>
<span class="progressBar" title="{$lng['customer']['unlimited']}">
<span class="greybar"><em style="left: 200px;">100%</em></span>
</span>
</if>
</td>
<td>
{$last_login}
</td>
</tr>
</table>
</td>
</tr>