You are here

pay_progress.tpl.php in Pay 7

Same filename and directory in other branches
  1. 6 modules/pay_progress/theme/pay_progress.tpl.php

File

modules/pay_progress/theme/pay_progress.tpl.php
View source
<?php

if ($goal) {
  ?>
  <div class="pay-progress">
    <div>
      <div class="pay-progress-bar">
        <div class="pay-progress-completed" style="width: <?php

  print $percent;
  ?>%"></div>
      </div>
    </div>
    <span class="pay-progress-percent"><?php

  print $percent;
  ?>%</span>
    <div class="pay-progress-overview">
      Raised <?php

  print theme('pay_money', $total, $currency);
  ?> of <?php

  print theme('pay_money', $goal, $currency);
  ?>
    </div>
  </div>
<?php

}