<?php
// Copyright 1999-2014. Parallels IP Holdings GmbH. All Rights Reserved.
?>
<?php if ($this->limitDetails['limitValue'] > 0): ?>

<span class="gauge-wrapper f9 not_empty" title="">
        <span class="gauge-container">
            <span class="gauge-filled" style="width: <?php echo $this->escape(min($this->limitDetails['percent'], 100)); ?>%;"></span>
        </span>
    </span>
<span class="gauge-legend">
        <?php echo $this->escape($this->limitDetails['usageString']) . ($this->showPercent ? " ({$this->limitDetails['percent']}%)" : ''); ?>
    </span>
<?php else: ?>
<?php echo $this->escape($this->limitDetails['usageString']); ?>
<?php endif; ?>

