diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-24 19:38:19 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-24 19:38:19 +0100 |
commit | bd01dbeda8c2ae224ab2c4915ed38effea05f972 (patch) | |
tree | ae73fbbf9eacd50035e91965375492c84bca6e38 /source/static/templates | |
parent | Added default value for the root of the tree. (diff) | |
download | newspipe-bd01dbeda8c2ae224ab2c4915ed38effea05f972.tar.gz newspipe-bd01dbeda8c2ae224ab2c4915ed38effea05f972.tar.bz2 newspipe-bd01dbeda8c2ae224ab2c4915ed38effea05f972.zip |
The /subscriptions page refers now to the appropriate feeds page.
Diffstat (limited to 'source/static/templates')
-rw-r--r-- | source/static/templates/subscriptions.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/static/templates/subscriptions.html b/source/static/templates/subscriptions.html index 48781e1e..f1eb8a7f 100644 --- a/source/static/templates/subscriptions.html +++ b/source/static/templates/subscriptions.html @@ -5,7 +5,7 @@ %if feeds: <ul> %for feed in feeds: - <li>${feed['feed_title']}</li> + <li><a href="/feed/${feed['feed_id']}">${feed['feed_title']}</a></li> %endfor </ul> %endif |