aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2014-04-08 08:25:50 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2014-04-08 08:25:50 +0200
commit93feaa3dc43ff4e6e08df73aeb517ebf728d9cbb (patch)
treecda07a76c650ea30cd6ec7fd16b35541b199e268
parentFixed /feeds template. (diff)
downloadnewspipe-93feaa3dc43ff4e6e08df73aeb517ebf728d9cbb.tar.gz
newspipe-93feaa3dc43ff4e6e08df73aeb517ebf728d9cbb.tar.bz2
newspipe-93feaa3dc43ff4e6e08df73aeb517ebf728d9cbb.zip
Fixed /feeds template (2).
-rw-r--r--pyaggr3g470r/templates/feeds.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
index 9e6a8cc1..c846fe86 100644
--- a/pyaggr3g470r/templates/feeds.html
+++ b/pyaggr3g470r/templates/feeds.html
@@ -25,13 +25,13 @@
<i class="glyphicon glyphicon-eye-close" title="Feed disabled"></i>
{% endif %}
</td>
- <td><a href="/feed/{{ feed.oid }}" {% if feed.description %}title="{{ feed.description }}"{% endif %}>{{ feed.title }}</a></td>
+ <td><a href="/feed/{{ feed.id }}" {% if feed.description %}title="{{ feed.description }}"{% endif %}>{{ feed.title }}</a></td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
<td>{{ feed.articles.all()|count }}</td>
<td>
- <a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list" title="All articles"></i></a>
- <a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
- <a href="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a>
+ <a href="/articles/{{ feed.id }}"><i class="glyphicon glyphicon-th-list" title="All articles"></i></a>
+ <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
+ <a href="/delete_feed/{{ feed.id }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a>
</td>
</tr>
{% endfor %}
bgstack15