diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-05-09 13:58:42 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-05-09 13:58:42 +0200 |
commit | d29dc0701c76ca48929bce0afcc0e49ed93ae0b7 (patch) | |
tree | 3e52f4653c098925b1d10dcebcbcdefde4e78c65 /pyaggr3g470r/templates | |
parent | Removed 'articles' view. (diff) | |
download | newspipe-d29dc0701c76ca48929bce0afcc0e49ed93ae0b7.tar.gz newspipe-d29dc0701c76ca48929bce0afcc0e49ed93ae0b7.tar.bz2 newspipe-d29dc0701c76ca48929bce0afcc0e49ed93ae0b7.zip |
Updated link to the page of articles for a feed.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r-- | pyaggr3g470r/templates/feeds.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html index 9c57bf42..a8446f6a 100644 --- a/pyaggr3g470r/templates/feeds.html +++ b/pyaggr3g470r/templates/feeds.html @@ -29,7 +29,7 @@ <td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td> <td>{{ feed.articles.count() }}</td> <td> - <a href="/articles/{{ feed.id }}/100"><i class="glyphicon glyphicon-th-list" title="{{ _('Articles') }}"></i></a> + <a href="{{ url_for("home", feed_id=feed.id, filter_="all") }}"><i class="glyphicon glyphicon-th-list" title="{{ _('Articles') }}"></i></a> <a href="{{ url_for("feed.form", feed_id=feed.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a> <a href="/duplicates/{{ feed.id }}"><i class="glyphicon glyphicon-book" title="{{ _('Duplicate articles') }}"></i></a> <a href="{{ url_for("feed.delete", feed_id=feed.id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a> |