Convert /feed to GET instead of POST

This commit is contained in:
2022-12-06 09:39:32 +01:00
parent 4c5faa2181
commit b5c3edf871
2 changed files with 6 additions and 8 deletions

View File

@ -9,11 +9,7 @@
<!-- Check if any feeds -->
{% if feeds %}
{% for feed in feeds %}
<form action="/feed" method="post">
<button type="submit" name="feed_url" value="{{ feed.url }}">
{{ feed.url }}
</button>
</form>
<a href="/feed/{{ feed.url }}">{{ feed.url }}</a>
{% endfor %}
{% else %}
<p>No feeds yet</p>