You are here

better_watchdog_ui_watchdog.tpl.php in Better Watchdog UI 7.3

Template for detailed watchdog entity.

File

better_watchdog_ui_entity/templates/better_watchdog_ui_watchdog.tpl.php
View source
<?php

/**
 * @file
 * Template for detailed watchdog entity.
 */
?>
<div id="better_watchdog_ui_watchdog-<?php

echo $wid;
?>" class="better_watchdog_ui_watchdog-detail">
  <table>
    <tbody>
      <?php

foreach ($items as $title => $value) {
  ?>
        <tr>
          <th><?php

  echo $title;
  ?></th>
          <td><?php

  echo $value;
  ?></td>
        </tr>
      <?php

}
?>
    </tbody>
  </table>
</div>