You are here

makemeeting-logpage.tpl.php in Make Meeting Scheduler 6

File

makemeeting-logpage.tpl.php
View source
<table>
  <thead>
  <th><?php

echo t('Name');
?></th>
  <th><?php

echo t('Date');
?></th>
  </thead>

  <?php

foreach ($rows as $row) {
  echo "\n    <tr>\n      <td>" . $row['username'] . "</td>\n      <td>" . $row['dt'] . "</td>\n    </tr>\n  ";
}
?>

</table>