diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-12 12:49:21 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-12 12:49:21 +0200 |
commit | d32edc3232580dbf8e602be36d5ef75a7092f67a (patch) | |
tree | c6de8849e8b0be4a6a641b5fda2e0e66f3a66066 /src/web/views | |
parent | Fixed 'license should be a valid SPDX license expression' problem. (diff) | |
download | newspipe-d32edc3232580dbf8e602be36d5ef75a7092f67a.tar.gz newspipe-d32edc3232580dbf8e602be36d5ef75a7092f67a.tar.bz2 newspipe-d32edc3232580dbf8e602be36d5ef75a7092f67a.zip |
Removed links between current article and the previous/next articles.
Diffstat (limited to 'src/web/views')
-rw-r--r-- | src/web/views/article.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/web/views/article.py b/src/web/views/article.py index 407345c3..fea4aa06 100644 --- a/src/web/views/article.py +++ b/src/web/views/article.py @@ -35,18 +35,9 @@ def article(article_id=None): Presents the content of an article. """ article = ArticleController(current_user.id).get(id=article_id) - previous_article = article.previous_article() - if previous_article is None: - previous_article = article.source.articles[0] - next_article = article.next_article() - if next_article is None: - next_article = article.source.articles[-1] - return render_template('article.html', head_titles=[clear_string(article.title)], - article=article, - previous_article=previous_article, - next_article=next_article) + article=article) @article_bp.route('/like/<int:article_id>', methods=['GET']) |