Fixed some more bootstrap rendering
This commit is contained in:
15
application/views/account/reseller/listlog.php
Normal file
15
application/views/account/reseller/listlog.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php $o = Auth::instance()->get_user();
|
||||
echo Block::factory()
|
||||
->title(_('Customer Login Activity'))
|
||||
->title_icon('fa fa-eye')
|
||||
->body(Table::factory()
|
||||
->data(ORM::factory('Account_Log')->where_authorised($o)->find_all())
|
||||
->page_items(25)
|
||||
->columns(array(
|
||||
'id'=>'ID',
|
||||
'date_orig'=>'Date',
|
||||
'account->name()'=>'Account',
|
||||
'ip'=>'IP Address',
|
||||
'details'=>'Details',
|
||||
))
|
||||
);
|
@@ -1,3 +1,6 @@
|
||||
<!-- o = Model_Account -->
|
||||
<?php echo View::factory('service/user/list')->set('o',$o); ?>
|
||||
<?php echo View::factory('invoice/user/list/due')->set('o',$o); ?>
|
||||
<?php echo View::factory('service/user/list/expiring')->set('o',$o); ?>
|
||||
<?php echo View::factory('service/user/list/inactive')->set('o',$o); ?>
|
||||
<?php echo View::factory('invoice/user/next')->set('o',$o); ?>
|
||||
|
Reference in New Issue
Block a user