]> git.bts.cx Git - cx.git/blobdiff - cx/templates/admin/main.php
Admin fixes
[cx.git] / cx / templates / admin / main.php
index 799db8805b6846c2a547dd9df58ec02f3f0f941d..c0da49a4d425560a027fc85bee915d9577232c11 100644 (file)
@@ -1,22 +1,34 @@
 <?php cx_template_base('base'); ?>
 
 <h2>Posts</h2>
 <?php cx_template_base('base'); ?>
 
 <h2>Posts</h2>
-<ul role="list">
+<table>
 <?php foreach (cx_posts_get(include_drafts: true) as $post): ?>
 <?php foreach (cx_posts_get(include_drafts: true) as $post): ?>
-<li><a href="<?= cx_url_admin('/posts/edit?id=' . $post->id); ?>"><?= $post->title ?></a> <a href="<?= cx_url_admin('/posts/delete?id=' . $post->id); ?>">🚮</a></li>
+<tr>
+ <td class="fill"><a href="<?= cx_url_admin('/posts/edit?id=' . $post->id); ?>"><?= $post->title ?></a></td>
+ <td class="hug"><a href="<?= cx_url_admin('/posts/edit?id=' . $post->id); ?>">Edit</a></td>
+ <td class="hug"><a href="<?= cx_url_admin('/posts/delete?id=' . $post->id); ?>">Delete</a></td>
+</tr>
 <?php endforeach; ?>
 <?php endforeach; ?>
-</ul>
+</table>
 
 <h2>Pages</h2>
 
 <h2>Pages</h2>
-<ul role="list">
-<?php foreach (cx_pages_get() as $post): ?>
-<li><a href="<?= cx_url_admin('/posts/edit?id=' . $post->id); ?>"><?= $post->title ?></a> <a href="<?= cx_url_admin('/posts/delete?id=' . $post->id); ?>">🚮</a></li>
+<table>
+<?php foreach (cx_pages_get(include_drafts: true) as $post): ?>
+<tr>
+ <td class="fill"><a href="<?= cx_url_admin('/posts/edit?id=' . $post->id); ?>"><?= $post->title ?></a></td>
+ <td class="hug"><a href="<?= cx_url_admin('/posts/edit?id=' . $post->id); ?>">Edit</a></td>
+ <td class="hug"><a href="<?= cx_url_admin('/posts/delete?id=' . $post->id); ?>">Delete</a></td>
+</tr>
 <?php endforeach; ?>
 <?php endforeach; ?>
-</ul>
+</table>
 
 <h2>Images</h2>
 
 <h2>Images</h2>
-<ul role="list">
+<table>
 <?php foreach (cx_images_get() as $image): ?>
 <?php foreach (cx_images_get() as $image): ?>
-<li><a href="<?= cx_url_admin('/images/edit?id=' . $image->id); ?>"><?= $image->url ?></a> <a href="<?= cx_url_admin('/images/delete?id=' . $image->id); ?>">🚮</a></li>
+<tr>
+ <td class="fill"><a href="<?= $image->url ?>"><?= $image->url ?></a></td>
+ <td class="hug"><a href="<?= cx_url_admin('/images/edit?id=' . $image->id); ?>">Edit</a></td>
+ <td class="hug"><a href="<?= cx_url_admin('/images/delete?id=' . $image->id); ?>">Delete</a></td>
+</tr>
 <?php endforeach; ?>
 <?php endforeach; ?>
-</ul>
+</table>