💄 (admin): improve the categories page

This commit is contained in:
Kazhnuz 2025-01-18 14:41:12 +01:00
parent ee78d8e53a
commit ef6dc0bd30

View file

@ -1,17 +1,23 @@
<?php defined('KOBLOG') or die('Koblog CMS.');
echo "<div class='d-flex justify-content-between align-content-center'>";
echo Bootstrap::pageTitle(array('title'=>$L->g('Categories'), 'icon'=>'tags'));
echo "<div>";
echo Bootstrap::link(array(
'title'=>$L->g('Add a new category'),
'href'=>HTML_PATH_ADMIN_ROOT.'new-category',
'icon'=>'plus'
'icon'=>'plus',
'class'=>'btn btn-outline-success'
));
echo "</div></div>";
echo '
<table class="table table-striped mt-3">
<div class="card mt-3">
<table class="table m-0">
<thead>
<tr>
<tr class="card-header">
<th class="border-bottom-0" scope="col">'.$L->g('Name').'</th>
<th class="border-bottom-0" scope="col">'.$L->g('URL').'</th>
</tr>
@ -21,7 +27,7 @@ echo '
foreach ($categories->keys() as $key) {
$category = new Category($key);
echo '<tr>';
echo '<tr class="card-tablebody">';
echo '<td><a href="'.HTML_PATH_ADMIN_ROOT.'edit-category/'.$key.'">'.$category->name().'</a></td>';
echo '<td><a href="'.$category->permalink().'">'.$url->filters('category', false).$key.'</a></td>';
echo '</tr>';
@ -30,4 +36,5 @@ foreach ($categories->keys() as $key) {
echo '
</tbody>
</table>
</div>
';