aboutsummaryrefslogtreecommitdiff
path: root/newspipe
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-06 13:55:53 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-06 13:55:53 +0200
commit5facb81f8b294b0d90b87b8c8df8ba5e9395ef79 (patch)
tree100d1b4099734245b5b1515db99bb52a9ccb7840 /newspipe
parentimproved feed menu (diff)
downloadnewspipe-5facb81f8b294b0d90b87b8c8df8ba5e9395ef79.tar.gz
newspipe-5facb81f8b294b0d90b87b8c8df8ba5e9395ef79.tar.bz2
newspipe-5facb81f8b294b0d90b87b8c8df8ba5e9395ef79.zip
chg: [views] removed delete article button from the home page.
Diffstat (limited to 'newspipe')
-rw-r--r--newspipe/templates/home.html1
1 files changed, 0 insertions, 1 deletions
diff --git a/newspipe/templates/home.html b/newspipe/templates/home.html
index 96b30aaf..82787c25 100644
--- a/newspipe/templates/home.html
+++ b/newspipe/templates/home.html
@@ -143,7 +143,6 @@
{% for article in articles %}
<tr data-article="{{ article.id }}" data-feed="{{ article.feed_id }}">
<td>
- <a href="#"><i class="fa fa-times delete" aria-hidden="true" title="{{ _('Delete this article') }}"></i></a>
{% if article.like %}
<a href="#"><i class="fa fa-heart like" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></a>
{% else %}
bgstack15