aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-29 07:41:08 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-29 07:41:08 +0100
commit4e93a974c8d0cde824eb94241fa0cbe8ba2d059f (patch)
tree2d50a287aeb91be79583c8180055bc896b8d7044 /src/web
parentImproved filtering to get only articles from public feed via the public profi... (diff)
downloadnewspipe-4e93a974c8d0cde824eb94241fa0cbe8ba2d059f.tar.gz
newspipe-4e93a974c8d0cde824eb94241fa0cbe8ba2d059f.tar.bz2
newspipe-4e93a974c8d0cde824eb94241fa0cbe8ba2d059f.zip
Added a link to the public user stream pae from the profile page.
Diffstat (limited to 'src/web')
-rw-r--r--src/web/templates/profile_public.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/profile_public.html b/src/web/templates/profile_public.html
index e30ae300..e933a04b 100644
--- a/src/web/templates/profile_public.html
+++ b/src/web/templates/profile_public.html
@@ -1,7 +1,7 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
- <h1>{{ user.nickname }}</h1>
+ <h1>{{ user.nickname }} / <a href="{{ url_for('user.user_stream', nickname=user.nickname) }}">stream</a></h1>
<div class="row">
<div class="col-md-12">
<p>
bgstack15