From 4e93a974c8d0cde824eb94241fa0cbe8ba2d059f Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 29 Oct 2018 07:41:08 +0100 Subject: Added a link to the public user stream pae from the profile page. --- src/web/templates/profile_public.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates') 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 %}
-

{{ user.nickname }}

+

{{ user.nickname }} / stream

-- cgit From 3ac2de8ff898cfe2df74e8f1a74dd7ef9c65fb66 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 29 Oct 2018 22:43:02 +0100 Subject: Improved the pagination and sorting of the list of articles of the public page. --- src/web/templates/feed.html | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html index d914b82b..31db94a5 100644 --- a/src/web/templates/feed.html +++ b/src/web/templates/feed.html @@ -55,7 +55,7 @@ - {% for article in feed.articles %} + {% for article in articles %} {{ article.title }} {{ article.date | datetime }} @@ -67,13 +67,10 @@

+
+
+ {{ pagination.links }} +
+
- {% endblock %} -- cgit