Fixed some more bootstrap rendering
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
->data($o->service->list_expiring())
|
||||
->columns(array(
|
||||
'id'=>'ID',
|
||||
'service_name(60)'=>'Service',
|
||||
'service_name(59)'=>'Service',
|
||||
'expire(TRUE)'=>'Date',
|
||||
))
|
||||
->prepend(array(
|
||||
|
17
modules/service/views/service/user/list/inactive.php
Normal file
17
modules/service/views/service/user/list/inactive.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<!-- o = Model Account -->
|
||||
<?php echo Block::factory()
|
||||
->title(sprintf('InActive Services for Account: %s',$o->accnum()))
|
||||
->title_icon('fa fa-stop')
|
||||
->span(6)
|
||||
->body(Table::factory()
|
||||
->data($o->service->where('status','!=',1)->or_where('status','IS',null)->find_all())
|
||||
->columns(array(
|
||||
'id'=>'ID',
|
||||
'service_name(60)'=>'Service',
|
||||
'date_end'=>'Date',
|
||||
))
|
||||
->prepend(array(
|
||||
'id'=>array('url'=>URL::link('user','service/view/')),
|
||||
))
|
||||
);
|
||||
?>
|
Reference in New Issue
Block a user