aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/duplicates.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-28 21:49:53 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-28 21:49:53 +0100
commit3c75e4bd17ed238ca0a38e858ee3013ddc2210c0 (patch)
tree455172dad7ea8aa1b368b463da15e424a53c87ff /pyaggr3g470r/templates/duplicates.html
parentImproved layout of the template duplicate.html. (diff)
downloadnewspipe-3c75e4bd17ed238ca0a38e858ee3013ddc2210c0.tar.gz
newspipe-3c75e4bd17ed238ca0a38e858ee3013ddc2210c0.tar.bz2
newspipe-3c75e4bd17ed238ca0a38e858ee3013ddc2210c0.zip
Added a button to delete duplicate articles.
Diffstat (limited to 'pyaggr3g470r/templates/duplicates.html')
-rw-r--r--pyaggr3g470r/templates/duplicates.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/duplicates.html b/pyaggr3g470r/templates/duplicates.html
index 4b8a7c44..a7eff2d0 100644
--- a/pyaggr3g470r/templates/duplicates.html
+++ b/pyaggr3g470r/templates/duplicates.html
@@ -16,8 +16,8 @@
{% for pair in duplicates %}
<tr>
<td>{{ loop.index }}</td>
- <td><a href="/article/{{ pair[0].id }}">{{ pair[0].title }}</a></td>
- <td><a href="/article/{{ pair[1].id }}">{{ pair[1].title }}</a></td>
+ <td><a href="/delete/{{ 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></td>
+ <td><a href="/delete/{{ 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></td>
</tr>
{% endfor %}
</tobdy>
bgstack15