aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/search.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-13 00:50:07 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-13 00:50:07 +0200
commit541db2f7408d333833ad5c2631cc172e82d9ed0e (patch)
tree45100a72df3ddd921eee8462c6d7fdf029d060c9 /pyaggr3g470r/templates/search.html
parentWhoosh search is now working (but not on Heroku). (diff)
downloadnewspipe-541db2f7408d333833ad5c2631cc172e82d9ed0e.tar.gz
newspipe-541db2f7408d333833ad5c2631cc172e82d9ed0e.tar.bz2
newspipe-541db2f7408d333833ad5c2631cc172e82d9ed0e.zip
fixed template for /search
Diffstat (limited to 'pyaggr3g470r/templates/search.html')
-rw-r--r--pyaggr3g470r/templates/search.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/search.html b/pyaggr3g470r/templates/search.html
index 36076b14..7b32d80c 100644
--- a/pyaggr3g470r/templates/search.html
+++ b/pyaggr3g470r/templates/search.html
@@ -13,9 +13,9 @@
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>{{ feed.title|safe }}</h1>
- <a href="/articles/{{ feed.oid }}/100"><i class="glyphicon glyphicon-th-list" title="More articles"></i></a>
- <a href="/feed/{{ feed.oid }}"><i class="glyphicon glyphicon-info-sign" title="Details"></i></a>
- <a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
+ <a href="/articles/{{ feed.id }}/100"><i class="glyphicon glyphicon-th-list" title="More articles"></i></a>
+ <a href="/feed/{{ feed.id }}"><i class="glyphicon glyphicon-info-sign" title="Details"></i></a>
+ <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
</div>
</div>
{% for number in range(0, feed.articles.all()|length-(feed.articles.all()|length % 3), 3) %}
bgstack15