From b463dfb407988f1c24ffefdcb5b5517ee9d6e297 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 22 Apr 2020 18:29:41 +0200 Subject: Add link to more recent issues. --- mumi/web/controller.scm | 2 ++ mumi/web/view/html.scm | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mumi/web/controller.scm b/mumi/web/controller.scm index e55f127..d107c8d 100644 --- a/mumi/web/controller.scm +++ b/mumi/web/controller.scm @@ -58,6 +58,8 @@ '((cache-control . ((max-age . 60)))))) (('GET "easy") (render-html (list-of-matching-bugs "tag:easy" (easy-bugs)))) + (('GET "recent") + (render-html (list-of-recent-issues))) (('GET "wishlist") (render-html (list-of-matching-bugs "severity:wishlist is:open" diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm index aac0d1b..8f2cf2b 100644 --- a/mumi/web/view/html.scm +++ b/mumi/web/view/html.scm @@ -185,7 +185,8 @@ " to submit a bug report.") ,(search-widget) - (div (@ (class "mt-4 h4")) "Recent activity") + (div (@ (class "mt-4 h4")) "Recent activity " + (small (a (@ (href "recent")) "(More)"))) (table (@ (class "table table-borderless table-hover js-sort-table")) (thead -- cgit v1.2.3