<?php
// Copyright 1999-2014. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<div class="stat-block">
    <div class="stat-name">
        <?php echo $this->escape($this->limits['disk_space']['title']) ?>:
        <b><?php echo $this->escape($this->limits['disk_space']['percent']) ?>%</b>
    </div>
    <div class="stat-gauge">
        <span class="gauge-wrapper">
            <span class="gauge-container">
                <span class="gauge-filled" style="width: <?php echo $this->escape(min($this->limits['disk_space']['percent'], 100)); ?>%;"></span>
            </span>
        </span>
    </div>
    <div class="stat-data"><?php echo $this->escape($this->limits['disk_space']['usageString']) ?></div>
</div>
<div class="stat-block">
    <div class="stat-name">
        <?php echo $this->escape($this->limits['max_traffic']['title']) ?>:
        <b><?php echo $this->escape($this->limits['max_traffic']['percent']) ?>%</b>
    </div>
    <div class="stat-gauge">
        <span class="gauge-wrapper">
            <span class="gauge-container">
                <span class="gauge-filled" style="width: <?php echo $this->escape(min($this->limits['max_traffic']['percent'], 100)); ?>%;"></span>
            </span>
        </span>
    </div>
    <div class="stat-data"><?php echo $this->escape($this->limits['max_traffic']['usageString']) ?></div>
</div>
<div class="panel-bottom-actions">
    <a href="<?php echo $this->baseUrl('/statistics/') ?>"><?php echo $this->lmsg('statsMoreLink') ?></a>
</div>
