diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-06-06 13:55:53 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-06-06 13:55:53 +0200 |
commit | 5facb81f8b294b0d90b87b8c8df8ba5e9395ef79 (patch) | |
tree | 100d1b4099734245b5b1515db99bb52a9ccb7840 | |
parent | improved feed menu (diff) | |
download | newspipe-5facb81f8b294b0d90b87b8c8df8ba5e9395ef79.tar.gz newspipe-5facb81f8b294b0d90b87b8c8df8ba5e9395ef79.tar.bz2 newspipe-5facb81f8b294b0d90b87b8c8df8ba5e9395ef79.zip |
chg: [views] removed delete article button from the home page.
-rw-r--r-- | newspipe/templates/home.html | 1 |
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 %} |