improve error message (it's still rubbish though)
This commit is contained in:
parent
1b8293f93e
commit
5f162a95bc
20
app/Main.hs
20
app/Main.hs
@ -104,15 +104,17 @@ postUploadR = do
|
||||
defaultLayout [whamlet|<p>#{List.length points} points - thanks!|]
|
||||
Left e ->
|
||||
defaultLayout
|
||||
[whamlet|<p>error ]
|
||||
FormMissing ->
|
||||
traceShow "missing" $
|
||||
defaultLayout [whamlet|<p>missing|]
|
||||
FormFailure x ->
|
||||
traceShow x $
|
||||
defaultLayout
|
||||
[whamlet|
|
||||
<p>Nope, sorry
|
||||
[whamlet|<p>parse error ]
|
||||
FormMissing ->
|
||||
defaultLayout [whamlet|<p>FormMissing (?)|]
|
||||
FormFailure errors ->
|
||||
defaultLayout
|
||||
[whamlet|
|
||||
<h1>Error uploading
|
||||
<ul>
|
||||
$forall err <- errors
|
||||
<li>#{err}
|
||||
|
||||
|]
|
||||
|
||||
main :: IO ()
|
||||
|
Loading…
Reference in New Issue
Block a user