You can now pause and unpause feeds
This commit is contained in:
parent
83383634b6
commit
bbb8ff51bc
2 changed files with 29 additions and 0 deletions
|
|
@ -39,6 +39,15 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
{% if not feed.updates_enabled %}
|
||||
<form action="/unpause" method="post">
|
||||
<button class="btn btn-dark btn-sm" name="feed_url" value="{{ feed.url }}">Unpause</button>
|
||||
</form>
|
||||
{% else %}
|
||||
<form action="/pause" method="post">
|
||||
<button class="btn btn-danger btn-sm" name="feed_url" value="{{ feed.url }}">Pause</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
{% for entry in entries %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue