aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 17:16:59 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 17:16:59 +0200
commit83bef132bd0e744edbb5b85a6a9e1fcd9eac4ff2 (patch)
tree607c5989c2e17f0cce7297670abbd0cdd5a90290 /pyaggr3g470r
parentImprovements of the feedgetter module. (diff)
downloadnewspipe-83bef132bd0e744edbb5b85a6a9e1fcd9eac4ff2.tar.gz
newspipe-83bef132bd0e744edbb5b85a6a9e1fcd9eac4ff2.tar.bz2
newspipe-83bef132bd0e744edbb5b85a6a9e1fcd9eac4ff2.zip
Bug fix in the /inactives template.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/inactives.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/inactives.html b/pyaggr3g470r/templates/inactives.html
index 719df58a..0d093029 100644
--- a/pyaggr3g470r/templates/inactives.html
+++ b/pyaggr3g470r/templates/inactives.html
@@ -10,7 +10,7 @@
{% if inactives != [] %}
<ul class="list-group">
{% for item in inactives %}
- <li class="list-group-item"><a href="/feed/{{ item[0].oid }}">{{ item[0].title }}</a> - {{ item[1].days }} days</li>
+ <li class="list-group-item"><a href="/feed/{{ item[0].id }}">{{ item[0].title }}</a> - {{ item[1].days }} days</li>
{% endfor %}
</ul>
{% else %}
bgstack15