You are here

list.tpl.php in Opigno Statistics App 7

Opigno statistics app - User - Badges earned list template file

File

templates/user/widgets/badges_earned/partials/list.tpl.php
View source
<?php

/**
 * @file
 * Opigno statistics app - User - Badges earned list template file
 *
 * @param array $badges_earned
 */
?>
<div>
    <?php

foreach ($badges_earned as $badge_earned) {
  print theme('opigno_statistics_app_user_widget_badges_earned_list_item', compact('badge_earned'));
}
?>
</div>