aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-29 10:59:59 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-29 10:59:59 +0200
commit20677d77dec1d06703b12b4e6f0a4aa551a687ee (patch)
tree26d641ec0fe972475b54902aa1b6b3dab77b6b07
parentUse more the controllers in views.py. user_id_key is the email. (diff)
downloadnewspipe-20677d77dec1d06703b12b4e6f0a4aa551a687ee.tar.gz
newspipe-20677d77dec1d06703b12b4e6f0a4aa551a687ee.tar.bz2
newspipe-20677d77dec1d06703b12b4e6f0a4aa551a687ee.zip
Displays the 'retrieved_date' instead of the 'id' in the /duplicates page.
-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 86990473..4d7ac650 100644
--- a/pyaggr3g470r/templates/duplicates.html
+++ b/pyaggr3g470r/templates/duplicates.html
@@ -20,8 +20,8 @@
{% for pair in duplicates %}
<tr>
<td>{{ loop.index }}</td>
- <td id="{{ pair[0].id }}"><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 id="{{ pair[1].id }}"><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>
+ <td id="{{ pair[0].id }}"><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].retrieved_date }})</td>
+ <td id="{{ pair[1].id }}"><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].retrieved_date }})</td>
</tr>
{% endfor %}
</tobdy>
bgstack15