aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:12:13 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:12:13 +0100
commit2f43a45bdf529cb3aa3fb03d9f4cb20cdb991101 (patch)
tree3c3630f7073bb023e4ec435e3bd8701f95da2328
parentFixe icon in the feed_list template. (diff)
downloadnewspipe-2f43a45bdf529cb3aa3fb03d9f4cb20cdb991101.tar.gz
newspipe-2f43a45bdf529cb3aa3fb03d9f4cb20cdb991101.tar.bz2
newspipe-2f43a45bdf529cb3aa3fb03d9f4cb20cdb991101.zip
Fixe icon in the duplicates template.
-rw-r--r--newspipe/web/templates/duplicates.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/newspipe/web/templates/duplicates.html b/newspipe/web/templates/duplicates.html
index d944a1a5..38dc52b1 100644
--- a/newspipe/web/templates/duplicates.html
+++ b/newspipe/web/templates/duplicates.html
@@ -8,10 +8,10 @@
<tr>
<th>#</th>
<th align="center">
- <span class="delete-all btn btn-default">{{ _('Delete all in this column') }}</span>
+ <span class="delete-all btn btn-primary">{{ _('Delete all in this column') }}</span>
</th>
<th align="center">
- <span class="delete-all btn btn-default">{{ _('Delete all in this column') }}</span>
+ <span class="delete-all btn btn-primary">{{ _('Delete all in this column') }}</span>
</th>
</tr>
</thead>
@@ -19,11 +19,11 @@
{% for pair in duplicates %}
<tr>
<td>{{ loop.index }}</td>
- <td id="{{ pair[0].id }}"><a href="{{ url_for("article.delete", article_id=pair[0].id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this article') }}"></i></a>&nbsp;<a href="/article/{{ pair[0].id }}">{{ pair[0].title }}</a> ({{ pair[0].retrieved_date }})</td>
- <td id="{{ pair[1].id }}"><a href="{{ url_for("article.delete", article_id=pair[1].id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this article') }}"></i></a>&nbsp;<a href="/article/{{ pair[1].id }}">{{ pair[1].title }}</a> ({{ pair[1].retrieved_date }})</td>
+ <td id="{{ pair[0].id }}"><a href="{{ url_for("article.delete", article_id=pair[0].id) }}"><i class="fa fa-times" aria-hidden="true" title="{{ _('Delete this article') }}"></i></a>&nbsp;<a href="/article/{{ pair[0].id }}">{{ pair[0].title }}</a> ({{ pair[0].retrieved_date }})</td>
+ <td id="{{ pair[1].id }}"><a href="{{ url_for("article.delete", article_id=pair[1].id) }}"><i class="fa fa-times" aria-hidden="true" title="{{ _('Delete this article') }}"></i></a>&nbsp;<a href="/article/{{ pair[1].id }}">{{ pair[1].title }}</a> ({{ pair[1].retrieved_date }})</td>
</tr>
{% endfor %}
- </tobdy>
+ </tbody>
</table>
</div>
</div><!-- /.container -->
bgstack15