aboutsummaryrefslogtreecommitdiff
path: root/newspipe
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:19:03 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:19:54 +0100
commit239808f26ecf164790c23c3a12658a7f6148cca4 (patch)
tree29b9b8c7c65fc6da0a7241641f54133636df4f1c /newspipe
parentFixe icon in the popular template. (diff)
downloadnewspipe-239808f26ecf164790c23c3a12658a7f6148cca4.tar.gz
newspipe-239808f26ecf164790c23c3a12658a7f6148cca4.tar.bz2
newspipe-239808f26ecf164790c23c3a12658a7f6148cca4.zip
Fixed icon in the feed template.
Diffstat (limited to 'newspipe')
-rw-r--r--newspipe/web/templates/feed.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/newspipe/web/templates/feed.html b/newspipe/web/templates/feed.html
index 31db94a5..4246669b 100644
--- a/newspipe/web/templates/feed.html
+++ b/newspipe/web/templates/feed.html
@@ -5,8 +5,8 @@
<h2>{{ feed.title }}</h2>
{% if feed.description %} <p>{{ feed.description }}</p> {% endif %}
{% if current_user.is_authenticated %}
- <a href="{{ url_for("feed.delete", feed_id=feed.id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a>
- <a href="{{ url_for("feed.form", feed_id=feed.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a>
+ <a href="{{ url_for("feed.delete", feed_id=feed.id) }}"><i class="fa fa-times" aria-hidden="true" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a>
+ <a href="{{ url_for("feed.form", feed_id=feed.id) }}"><i class="fa fa-pencil-square-o" aria-hidden="true" title="{{ _('Edit this feed') }}"></i></a>
{% endif %}
</div>
<div class="well">
bgstack15