diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 14:48:25 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 14:48:25 +0200 |
commit | 8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0 (patch) | |
tree | d2f2eb71f19808ea5f56f419595279658fc95035 /src/web/templates/profile_public.html | |
parent | lazy loading of the translation (diff) | |
download | newspipe-8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0.tar.gz newspipe-8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0.tar.bz2 newspipe-8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0.zip |
Draft for a public user profile page.
Diffstat (limited to 'src/web/templates/profile_public.html')
-rw-r--r-- | src/web/templates/profile_public.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/web/templates/profile_public.html b/src/web/templates/profile_public.html new file mode 100644 index 00000000..04beee8e --- /dev/null +++ b/src/web/templates/profile_public.html @@ -0,0 +1,16 @@ +{% extends "layout.html" %} +{% block content %} +<div class="container"> + <h1>{{ user.nickname }}</h1> + <div class="row"> + <div class="col-md-6"> + <p>{{ _('Member since') }} {{ user.date_created | datetime }}.</p> + <p>{{ _('Last seen:') }} {{ user.last_seen | datetime }}.</p> + </div> + </div> + + <h2>Feeds</h2> + {% include "feed_list.html" %} + +</div><!-- /.container --> +{% endblock %} |