diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-04-13 00:50:07 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-04-13 00:50:07 +0200 |
commit | 541db2f7408d333833ad5c2631cc172e82d9ed0e (patch) | |
tree | 45100a72df3ddd921eee8462c6d7fdf029d060c9 /pyaggr3g470r/templates/search.html | |
parent | Whoosh search is now working (but not on Heroku). (diff) | |
download | newspipe-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.html | 6 |
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) %} |