Table basics with some HTMX to allow data refresh
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user