Server IP : 213.176.29.180  /  Your IP : 3.144.227.3
Web Server : Apache
System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
User : webtaragh ( 1001)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/webtaragh/public_html/whmcs/templates/six/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/webtaragh/public_html/whmcs/templates/six/clientareaproductusagebilling.tpl
<p>{$LANG.metrics.explanation}</p>
<table class="table table-striped" style="margin-bottom:5px;border-bottom:1px solid #ddd;">
    <tr>
        <th>{$LANG.metrics.metric}</th>
        <th>{$LANG.metrics.currentUsage}</th>
        <th>{$LANG.metrics.pricing}</th>
        <th>{$LANG.metrics.lastUpdated}</th>
    </tr>
    {foreach $metricStats as $metric}
        <tr>
            <td>{$metric.displayName}</td>
            <td>{$metric.currentValue}</td>
            <td>
                {if count($metric.pricing) > 1}
                    {$LANG.metrics.startingFrom} {$metric.lowestPrice} / {if $metric.unitName}{$metric.unitName}{else}{$LANG.metrics.unit}{/if}
                    <br>
                    <button type="button" class="btn btn-default btn-xs" data-toggle="modal" data-target="#modalMetricPricing-{$metric.systemName}">
                        {$LANG.metrics.viewPricing}
                    </button>
                {elseif count($metric.pricing) == 1}
                    {$metric.lowestPrice} / {if $metric.unitName}{$metric.unitName}{else}{$LANG.metrics.unit}{/if}
                    {if $metric.includedQuantity > 0} ({$metric.includedQuantity} {$LANG.metrics.includedNotCounted}){/if}
                {else}
                    &mdash;
                {/if}
                {include file="$template/usagebillingpricing.tpl"}
            </td>
            <td>{if is_string($metric.lastUpdated)}{$metric.lastUpdated}{else}{$metric.lastUpdated->diffForHumans()}{/if}</td>
        </tr>
    {/foreach}
</table>