summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mumi/web/controller.scm2
-rw-r--r--mumi/web/view/html.scm3
2 files changed, 4 insertions, 1 deletions
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