aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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