aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/home.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-13 08:58:42 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-13 08:58:42 +0200
commit9715533ac83fe63df7a384cfd74cfad342b588b4 (patch)
treeeb8b4846677fa25c656a883cbcba39d55fb5fbbc /pyaggr3g470r/templates/home.html
parentUpdated translations. (diff)
downloadnewspipe-9715533ac83fe63df7a384cfd74cfad342b588b4.tar.gz
newspipe-9715533ac83fe63df7a384cfd74cfad342b588b4.tar.bz2
newspipe-9715533ac83fe63df7a384cfd74cfad342b588b4.zip
It is now possible to sort articles by date (default) or by feed.
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r--pyaggr3g470r/templates/home.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index e055b3e0..98b12e25 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -73,9 +73,9 @@
<thead>
<tr>
<th></th>
- <th>{{ _('Feed') }}</th>
+ <th><a href="{{ gen_url(sort_='feed') }}">{{ _('Feed') }}</a></th>
<th>{{ _('Article') }}</th>
- <th>{{ _('Date') }}</th>
+ <th><a href="{{ gen_url(sort_='date') }}">{{ _('Date') }}</a></th>
</tr>
</thead>
<tbody>
bgstack15