22 lines
748 B
PHP
22 lines
748 B
PHP
<!-- @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>
|