Use FastAPI instead of Django

This commit is contained in:
Joakim Hellsén 2024-05-21 02:43:53 +02:00
commit b462be40af
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
43 changed files with 1105 additions and 1688 deletions

View file

@ -4,9 +4,9 @@
<ul>
{% for feed in feeds %}
<li>
<a href="{% url 'feeds:feed' feed.id %}">{{ feed.url }}</a>
<a href="{{ url_for('feed', feed_url=feed.url) }}">{{ feed.url }}</a>
<p>{{ feed.description }}</p>
</li>
{% endfor %}
</ul>
{% endblock %}
{% endblock content %}