Table basics with some HTMX to allow data refresh

This commit is contained in:
2025-01-28 20:21:43 +01:00
parent acf7b5ab6b
commit 3c180625b2
8 changed files with 388 additions and 22 deletions

View File

@@ -2,6 +2,29 @@
{% block title %}Hello!{% endblock %}
{% block content %}
<h1>Hello, {{name}}!</h1>
{% block head %}
{% endblock %}
{% block content %}
<nav class="no-overflow fixed width" style="z-index: 20">
<div>
<a href="/" class="flex">
<img src="/assets/logo.svg" class="m-.5" style="height: 32px" alt="RSS Notifier Logo"/>
<h2 style="margin-bottom: auto; margin-top: auto">RSS Notifier</h2>
</a>
</div>
</nav>
<div style="height: 48px; margin-bottom: 8px"></div>
<div class="flex end"><button>Create</button></div>
<table class="centered">
<tr>
<th>Feed Name</th>
<th>Feed URL</th>
<th>Last Mail Sent</th>
<th>Actions</th>
</tr>
{% for feed in feeds %}
{% include "feed.html" %}
{% endfor %}
</table>
{% endblock %}