Go back to Django

This commit is contained in:
Joakim Hellsén 2024-02-19 05:44:08 +01:00
commit 7eee113cdf
22 changed files with 1481 additions and 172 deletions

14
templates/feeds.html Normal file
View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<h2>Feeds</h2>
<ul>
{% for feed in feeds %}
<li>{{ feed.feed_url }} - {{ feed.created_at|date }}</li>
<li>
<a href="/feed/{{ feed.id }}">View</a>
</li>
{% empty %}
<li>No feeds yet.</li>
{% endfor %}
</ul>
{% endblock %}