aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-27 06:58:24 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-27 06:58:24 +0100
commit7d94362fdde9a93b234be7a8be33a6ff819fe293 (patch)
treef1c631433cdb26e672dc73602459d3f62124b99c /pyaggr3g470r/templates
parentFixed configuration file for Vagrant. (diff)
downloadnewspipe-7d94362fdde9a93b234be7a8be33a6ff819fe293.tar.gz
newspipe-7d94362fdde9a93b234be7a8be33a6ff819fe293.tar.bz2
newspipe-7d94362fdde9a93b234be7a8be33a6ff819fe293.zip
Display the article id in the 'duplicates' page.
Diffstat (limited to 'pyaggr3g470r/templates')
-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 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>&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>
+ <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> ({{ pair[0].entry_id }})</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> ({{ pair[1].entry_id }})</td>
</tr>
{% endfor %}
</tobdy>
bgstack15