diff --git a/src/Vervis/Handler/Home.hs b/src/Vervis/Handler/Home.hs
index d577501..54df127 100644
--- a/src/Vervis/Handler/Home.hs
+++ b/src/Vervis/Handler/Home.hs
@@ -52,7 +52,7 @@ intro = do
ago <- case mdt of
Nothing -> return "never"
Just dt -> timeAgo dt
- return (sharer, fromMaybe "(none)" mproj, repo, ago)
+ return (sharer, mproj, repo, ago)
defaultLayout $ do
setTitle "Welcome to Vervis!"
$(widgetFile "homepage")
diff --git a/templates/homepage.hamlet b/templates/homepage.hamlet
index 679a6e2..91aae82 100644
--- a/templates/homepage.hamlet
+++ b/templates/homepage.hamlet
@@ -25,11 +25,22 @@ $#
Sharer + | Project + | Repo + | Last change + $forall (sharer, mproj, repo, ago) <- rows | |||
---|---|---|---|---|---|---|
#{sharer} - | #{proj} - | #{repo} + | + #{sharer} + | + $maybe proj <- mproj + #{proj} + $nothing + (none) + | + #{repo} | #{ago}
People |