|
1
|
<div id="page-table"> |
|
2
|
<div class="overflow-x-auto rounded-lg border border-gray-700 bg-gray-800 shadow-sm"> |
|
3
|
<table class="min-w-full divide-y divide-gray-700"> |
|
4
|
<thead class="bg-gray-900/80"> |
|
5
|
<tr> |
|
6
|
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-400">Title</th> |
|
7
|
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-400">Status</th> |
|
8
|
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-400">Updated</th> |
|
9
|
<th class="px-6 py-3 text-right text-xs font-medium uppercase tracking-wider text-gray-400">Actions</th> |
|
10
|
</tr> |
|
11
|
</thead> |
|
12
|
<tbody class="divide-y divide-gray-700/70 bg-gray-800"> |
|
13
|
{% for page in pages %} |
|
14
|
<tr class="hover:bg-gray-700/40 transition-colors"> |
|
15
|
<td class="px-6 py-4 whitespace-nowrap"> |
|
16
|
<a href="{% url 'pages:detail' slug=page.slug %}" class="text-brand-light hover:text-brand font-medium"> |
|
17
|
{{ page.name }} |
|
18
|
</a> |
|
19
|
</td> |
|
20
|
<td class="px-6 py-4 whitespace-nowrap"> |
|
21
|
{% if page.is_published %} |
|
22
|
<span class="inline-flex rounded-full bg-green-900/50 px-2 text-xs font-semibold leading-5 text-green-300">Published</span> |
|
23
|
{% else %} |
|
24
|
<span class="inline-flex rounded-full bg-yellow-900/50 px-2 text-xs font-semibold leading-5 text-yellow-300">Draft</span> |
|
25
|
{% endif %} |
|
26
|
</td> |
|
27
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-400">{{ page.updated_at|date:"N j, Y" }}</td> |
|
28
|
<td class="px-6 py-4 whitespace-nowrap text-right text-sm"> |
|
29
|
{% if perms.pages.change_page %} |
|
30
|
<a href="{% url 'pages:update' slug=page.slug %}" class="text-brand-light hover:text-brand">Edit</a> |
|
31
|
{% endif %} |
|
32
|
</td> |
|
33
|
</tr> |
|
34
|
{% empty %} |
|
35
|
<tr> |
|
36
|
<td colspan="4" class="px-6 py-8 text-center text-sm text-gray-400">No pages found.</td> |
|
37
|
</tr> |
|
38
|
{% endfor %} |
|
39
|
</tbody> |
|
40
|
</table> |
|
41
|
</div> |
|
42
|
</div> |
|
43
|
|