diff --git a/static/css/dashboard.css b/static/css/dashboard.css index 9b9cb05..c3ce72d 100644 --- a/static/css/dashboard.css +++ b/static/css/dashboard.css @@ -99,3 +99,7 @@ label.ovm-input:last-child > img { .feed-journal-entry:hover { background-color: rgba(0, 0, 0, 0.2); } + +.feed-journal-entry a { + display: block; +} diff --git a/views/dashboard.pug b/views/dashboard.pug index 0fc4949..3c978f9 100644 --- a/views/dashboard.pug +++ b/views/dashboard.pug @@ -52,6 +52,7 @@ block content .feed-journal-entries for entry of recentJournalUpdates .feed-journal-entry + a(href=`/users/${entry.user}`).subtle= entry.user a(href=`/journal/${entry.id}`)= entry.title +journal_entry_suffix(entry, session.user === entry.user) hr