diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-10-29 07:41:08 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-10-29 07:41:08 +0100 |
commit | 4e93a974c8d0cde824eb94241fa0cbe8ba2d059f (patch) | |
tree | 2d50a287aeb91be79583c8180055bc896b8d7044 /src/web/templates | |
parent | Improved filtering to get only articles from public feed via the public profi... (diff) | |
download | newspipe-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/templates')
-rw-r--r-- | src/web/templates/profile_public.html | 2 |
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> |