File size: 1.42Kb
<?php echo $this->validation()->messages() ?>
<h1><?php echo __('Admin dashboard') ?></h1>
<table class="dashboard">
<tr>
<td width="50%">
<h3><?php echo __('Overview')?></h3>
<table class="grid">
<tr>
<th> </th>
<th><?php echo __('Pending') ?></th>
<th><?php echo __('Total') ?></th>
</tr>
<tr>
<td><?php echo __('Users') ?></td>
<td><?php echo $num_pending_users ?></td>
<td><?php echo $total_users ?></td>
</tr>
<tr class="r1">
<td><?php echo __('Wallpapers') ?></td>
<td><?php echo $num_pending_wallpapers ?></td>
<td><?php echo $total_wallpapers ?></td>
</tr>
<tr>
<td><?php echo __('Comments') ?></td>
<td><?php echo $num_pending_comments ?></td>
<td><?php echo $total_comments ?></td>
</tr>
</table>
</td>
<td width="50%">
<?php
if ($from_our_blog)
{
echo '<h3>' . __('Latest news from veppa blog and forum') . '</h3>';
echo $from_our_blog;
}
?>
</td>
</tr>
</table>