Added User email viewing

Improved Table::
This commit is contained in:
Deon George
2011-08-27 16:33:46 +10:00
parent 495da41e0d
commit 6d44e7d5b2
51 changed files with 701 additions and 273 deletions

View File

@@ -1,21 +0,0 @@
<!-- @todo NEEDS TO BE TRANSLATED -->
<table class="box-left">
<tr>
<td class="head">ID</td>
<td class="head">Type</td>
<td class="head">Details</td>
<td class="head">Billing</td>
<td class="head">Price</td>
<td class="head">Active</td>
</tr>
<?php $i = 0; foreach ($services as $service) { ?>
<tr class="<?php echo ++$i%2 ? 'odd' : 'even'; ?>">
<td><?php echo HTML::anchor('user/service/view/'.$service->id,$service->id); ?></td>
<td><?php echo $service->display('type'); ?></td>
<td><?php echo $service->name(); ?></td>
<td><?php echo $service->display('recur_schedule');?></td>
<td><?php echo $service->display('price'); ?></td>
<td><?php echo $service->display('active'); ?></td>
</tr>
<?php } ?>
</table>