Files
universal_web_loco_rewrite/assets/views/admin/blog/index.html
2026-05-17 17:46:04 +02:00

64 lines
2.2 KiB
HTML

{% extends "admin/base.html" %}
{% block title %}Blog Articles{% endblock title %}
{% block content %}
<div class="space-y-2">
<div class="flex flex-wrap items-center justify-between gap-3">
<div>
<h1 class="text-2xl font-bold">Blog Articles</h1>
<p class="text-sm opacity-70">Create, edit, and remove blog posts.</p>
</div>
<a href="/admin/blog/articles/new" class="btn btn-neutral btn-sm">New article</a>
</div>
<div class="card border border-base-300 bg-base-100 shadow-sm">
<div class="card-body">
{% if articles | length > 0 %}
<div class="overflow-x-auto">
<table class="table">
<thead>
<tr>
<th>Title</th>
<th>Status</th>
<th class="text-right">Actions</th>
</tr>
</thead>
<tbody>
{% for article in articles %}
<tr>
<td class="font-medium">{{ article.title }}</td>
<td>
{% if article.published %}
<span class="badge">Published</span>
{% else %}
<span class="badge opacity-70">Draft</span>
{% endif %}
</td>
<td>
<div class="flex gap-2">
<a href="/admin/blog/articles/{{ article.id }}/edit" class="btn btn-ghost btn-sm">Edit</a>
<form method="post" action="/admin/blog/articles/{{ article.id }}/delete">
<button type="submit" class="btn btn-ghost btn-sm">Delete</button>
</form>
</div>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<div class="text-center">
<p class="font-medium">No articles yet.</p>
<p class="text-sm opacity-70">Create the first blog post.</p>
<div class="pt-2">
<a href="/admin/blog/articles/new" class="btn btn-neutral btn-sm">New article</a>
</div>
</div>
{% endif %}
</div>
</div>
</div>
{% endblock content %}