diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-28 09:55:16 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-28 09:55:16 +0100 |
commit | d1cbb124997166292eed2f7cfb25c82d82792226 (patch) | |
tree | 655a29c97f058076425558f8ce9c48651639112e /pyaggr3g470r/templates | |
parent | Merge branch 'master' of bitbucket.org:cedricbonhomme/pyaggr3g470r (diff) | |
download | newspipe-d1cbb124997166292eed2f7cfb25c82d82792226.tar.gz newspipe-d1cbb124997166292eed2f7cfb25c82d82792226.tar.bz2 newspipe-d1cbb124997166292eed2f7cfb25c82d82792226.zip |
It is now possible to delete all duplicate articles with one request.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r-- | pyaggr3g470r/templates/duplicates.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/duplicates.html b/pyaggr3g470r/templates/duplicates.html index 2c08306a..2c953fa3 100644 --- a/pyaggr3g470r/templates/duplicates.html +++ b/pyaggr3g470r/templates/duplicates.html @@ -8,16 +8,16 @@ <thead> <tr> <th>#</th> - <th></th> - <th></th> + <th><span class="delete-all">Delete all</span></th> + <th><span class="delete-all">Delete all</span></th> </tr> </thead> <tbody> {% for pair in duplicates %} <tr> <td>{{ loop.index }}</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> ({{ pair[0].entry_id }})</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> ({{ pair[1].entry_id }})</td> + <td id="{{ pair[0].id }}"><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> ({{ pair[0].entry_id }})</td> + <td id="{{ pair[1].id }}"><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> ({{ pair[1].entry_id }})</td> </tr> {% endfor %} </tobdy> |