diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-11-28 21:49:53 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-11-28 21:49:53 +0100 |
commit | 3c75e4bd17ed238ca0a38e858ee3013ddc2210c0 (patch) | |
tree | 455172dad7ea8aa1b368b463da15e424a53c87ff /pyaggr3g470r/templates/duplicates.html | |
parent | Improved layout of the template duplicate.html. (diff) | |
download | newspipe-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.html | 4 |
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> <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> <a href="/article/{{ pair[1].id }}">{{ pair[1].title }}</a></td> </tr> {% endfor %} </tobdy> |