From c4b4eb91492db2950d7d6c08edab9b26fb8bf334 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 28 Mar 2022 17:21:22 +0200 Subject: server: add a howto link --- server/HtmlOrphans.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'server/HtmlOrphans.hs') diff --git a/server/HtmlOrphans.hs b/server/HtmlOrphans.hs index dad2954..c6f74d5 100644 --- a/server/HtmlOrphans.hs +++ b/server/HtmlOrphans.hs @@ -31,7 +31,7 @@ import Lucid.Html5 (a_, body_, button_, class_, code_, disabled_, onclick_, p_, rel_, script_, span_, src_, title_, type_, ul_) import Server (JobStatus (..), - Org (Org, orgBacklinkPrefix, orgContactMail, orgSlug), + Org (Org, orgBacklinkPrefix, orgContactMail, orgHowtoLink, orgSlug), RemoteRef (RemoteRef, reponame, reporef, repourl), prettySha, unState) import Types (Hint (Hint), Level (..)) @@ -61,7 +61,9 @@ instance ToHtml (Org True, RemoteRef, JobStatus, Maybe JobStatus) where "Linter Result" if pending then button_ [class_ "btn btn-primary btn-disabled", disabled_ "true"] "pending …" - else button_ [onclick_ "relint()", class_ "btn btn-primary", id_ "relint_button"] "relint now" + else button_ [onclick_ "relint()", class_ "btn btn-primary", id_ "relint_button"] "Relint" + whenJust orgHowtoLink $ \link -> + a_ [class_ "btn btn-primary", href_ link] "Howto" a_ [class_ "btn btn-primary" , href_ ("mailto:" <> orgContactMail <> "?subject=[Help-walint] " <> reponame <> " " <> rev)] "Help?" -- cgit v1.2.3