diff options
author | Vincent Ambo <viam@humac.com> | 2012-03-05T23·50+0100 |
---|---|---|
committer | Vincent Ambo <viam@humac.com> | 2012-03-05T23·50+0100 |
commit | 0418692f07e057e2aa847fb2f5f24e6021a6073e (patch) | |
tree | 11be04de3bfd67f38326548e7b7a4e480191846c /src/Blog.hs | |
parent | f113778e17be9124615ccc1ba684cb4a832f9408 (diff) |
* finished comment field
Diffstat (limited to 'src/Blog.hs')
-rw-r--r-- | src/Blog.hs | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/src/Blog.hs b/src/Blog.hs index 62de9be0f442..9c35c1ec742f 100644 --- a/src/Blog.hs +++ b/src/Blog.hs @@ -100,22 +100,20 @@ renderEntry entry = H.div ! A.class_ "innerBox" $ do preEscapedString $ text entry preEscapedString $ mtext entry H.div ! A.class_ "innerBoxComments" $ do - H.div ! A.name "cHead" ! A.style "font-size:large;font-weight:bold;" $ toHtml $ cHead (lang entry) + H.div ! A.class_ "cHead" $ toHtml $ cHead (lang entry) -- ! A.style "font-size:large;font-weight:bold;" H.ul $ renderComments (comments entry) (lang entry) - renderCommentBox $ lang entry + renderCommentBox (lang entry) (_id entry) -renderCommentBox :: BlogLang -> Html -renderCommentBox lang = do - H.div ! A.name "cHead" $ toHtml $ cwHead lang - H.form $ do +renderCommentBox :: BlogLang -> String -> Html +renderCommentBox cLang cId = do + H.div ! A.class_ "cHead" $ toHtml $ cwHead cLang + H.form ! A.method "POST" ! A.action (toValue $ "/" ++ (show cLang) ++ "/postcomment/" ++ cId) $ do H.p $ H.label $ do - toHtml ("Name:" :: String) - H.input -{- -<form> - <p><label>Customer name: <input></label></p> -</form> --} + H.span $ "Name:" --toHtml ("Name:" :: String) + H.input ! A.name "cname" + H.p $ H.label $ do + H.span $ toHtml $ cSingle cLang -- toHtml (cSingle lang) + H.textarea ! A.name "ctext" ! A.cols "50" ! A.rows "13" $ mempty renderComments :: [Comment] -> BlogLang -> Html renderComments [] lang = H.li $ toHtml $ noComments lang |