diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-27 06:58:24 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-27 06:58:24 +0100 |
commit | 7d94362fdde9a93b234be7a8be33a6ff819fe293 (patch) | |
tree | f1c631433cdb26e672dc73602459d3f62124b99c | |
parent | Fixed configuration file for Vagrant. (diff) | |
download | newspipe-7d94362fdde9a93b234be7a8be33a6ff819fe293.tar.gz newspipe-7d94362fdde9a93b234be7a8be33a6ff819fe293.tar.bz2 newspipe-7d94362fdde9a93b234be7a8be33a6ff819fe293.zip |
Display the article id in the 'duplicates' page.
-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 a7eff2d0..2c08306a 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="/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> + <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> </tr> {% endfor %} </tobdy> |