diff --git a/bl-kernel/admin/themes/booty/css/bludit.css b/bl-kernel/admin/themes/booty/css/bludit.css index 1af86775..c8cde06e 100644 --- a/bl-kernel/admin/themes/booty/css/bludit.css +++ b/bl-kernel/admin/themes/booty/css/bludit.css @@ -217,3 +217,10 @@ div.sidebar .nav-item span.oi { color: #6c757d !important; } +/* + Manage > Content +*/ + +td.child { + padding-left: 30px; +} \ No newline at end of file diff --git a/bl-kernel/admin/views/content.php b/bl-kernel/admin/views/content.php index 470009cb..38e918a3 100644 --- a/bl-kernel/admin/views/content.php +++ b/bl-kernel/admin/views/content.php @@ -72,31 +72,47 @@ function table($type) { if (!$page->isChild() || $type!='published') { echo ' - ' - .($page->title()?$page->title():''.$L->g('Empty title').' ') - .' +
+ ' + .($page->title()?$page->title():''.$L->g('Empty title').' ') + .' +
+
+

'.( ((ORDER_BY=='position') || ($type!='published'))?'Position: '.$page->position():$page->date(MANAGE_CONTENT_DATE_FORMAT) ).'

+
'; $friendlyURL = Text::isEmpty($url->filters('page')) ? '/'.$page->key() : '/'.$url->filters('page').'/'.$page->key(); echo ''.$friendlyURL.''; - echo ''.$page->position().''; + echo ''.PHP_EOL; + echo ' '.$L->g('Edit').''.PHP_EOL; + echo ''.PHP_EOL; + echo ''; echo ''; foreach ($page->children() as $child) { if ($child->published()) { echo ' - - ' - .($child->title()?$child->title():''.$L->g('Empty title').' ') - .' + +
+ ' + .($child->title()?$child->title():''.$L->g('Empty title').' ') + .' +
+
+

'.( ((ORDER_BY=='position') || ($type!='published'))?'Position: '.$child->position():$child->date(MANAGE_CONTENT_DATE_FORMAT) ).'

+
'; $friendlyURL = Text::isEmpty($url->filters('page')) ? '/'.$child->key() : '/'.$url->filters('page').'/'.$child->key(); echo ''.$friendlyURL.''; - echo ''.$child->position().''; + echo ''.PHP_EOL; + echo ' '.$L->g('Edit').''.PHP_EOL; + echo ''.PHP_EOL; + echo ''; echo ''; }