You are here

commerce-invoice-created.tpl.php in Commerce Invoice 7

File

theme/commerce-invoice-created.tpl.php
View source
<?php

/**
 * @file
 */
if ($created) {
  ?>
  <div class="commerce-invoice-created">
    <?php

  if ($label) {
    ?>
    <div class="commerce-invoice-created-label">
      <?php

    print $label;
    ?>
    </div>
    <?php

  }
  ?>
    <?php

  print $created;
  ?>
  </div>
<?php

}