diff --git a/bl-kernel/admin/controllers/developers.php b/bl-kernel/admin/controllers/developers.php index 37b37c9c..8b030f12 100644 --- a/bl-kernel/admin/controllers/developers.php +++ b/bl-kernel/admin/controllers/developers.php @@ -13,8 +13,10 @@ checkRole(array('admin')); // This function is used on the VIEW to show the tables function printTable($title, $array) { echo '

'.$title.'

'; - echo ' - + echo ' +
+
+ '; foreach ($array as $key=>$value) { @@ -31,8 +33,9 @@ function printTable($title, $array) { } echo ' - +
+ '; } diff --git a/bl-kernel/admin/views/about.php b/bl-kernel/admin/views/about.php index 61ea5c75..6f2390d9 100644 --- a/bl-kernel/admin/views/about.php +++ b/bl-kernel/admin/views/about.php @@ -3,8 +3,9 @@ echo Bootstrap::pageTitle(array('title'=>$L->g('About'), 'icon'=>'info-circle')); echo ' - - +
+
+ '; echo ''; @@ -42,6 +43,7 @@ echo ''; echo ''; echo ' - -
+ + + '; diff --git a/bl-kernel/admin/views/categories.php b/bl-kernel/admin/views/categories.php index 9ee18654..8fce26b6 100644 --- a/bl-kernel/admin/views/categories.php +++ b/bl-kernel/admin/views/categories.php @@ -9,14 +9,15 @@ echo Bootstrap::link(array( )); echo ' - - - - - - - - +
+
'.$L->g('Name').''.$L->g('URL').'
+ + + + + + + '; foreach ($categories->keys() as $key) { @@ -28,6 +29,7 @@ foreach ($categories->keys() as $key) { } echo ' - -
'.$L->g('Name').''.$L->g('URL').'
+ + + '; diff --git a/bl-kernel/admin/views/users.php b/bl-kernel/admin/views/users.php index 019493ac..e166b75e 100644 --- a/bl-kernel/admin/views/users.php +++ b/bl-kernel/admin/views/users.php @@ -11,18 +11,19 @@ echo Bootstrap::link(array( )); echo ' - - - - - - - - - - - - +
+
'.$L->g('Username').''.$L->g('Nickname').''.$L->g('Email').''.$L->g('Status').''.$L->g('Role').''.$L->g('Registered').'
+ + + + + + + + + + + '; $list = $users->keys(); @@ -51,6 +52,7 @@ foreach ($list as $username) { } echo ' - -
'.$L->g('Username').''.$L->g('Nickname').''.$L->g('Email').''.$L->g('Status').''.$L->g('Role').''.$L->g('Registered').'
+ + + '; \ No newline at end of file