Commit 72c016a0 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] user page url.

parent 84644723
...@@ -128,7 +128,7 @@ showRow :: Maybe User -> ReactElement ...@@ -128,7 +128,7 @@ showRow :: Maybe User -> ReactElement
showRow Nothing = tr [][] showRow Nothing = tr [][]
showRow (Just (User { id : id, hyperdata : (HyperData user) })) = showRow (Just (User { id : id, hyperdata : (HyperData user) })) =
tr [] tr []
[ td [] [ a [ href (toUrl Back NodeUser id) ] [ text $ maybe' user.nom <> " " <> maybe' user.prenom ] ] [ td [] [ a [ href (toUrl Front NodeUser id) ] [ text $ maybe' user.nom <> " " <> maybe' user.prenom ] ]
, td [] [text $ maybe' user.fonction] , td [] [text $ maybe' user.fonction]
, td [] [text $ maybe' user.service] , td [] [text $ maybe' user.service]
, td [] [text $ maybe' user.groupe] , td [] [text $ maybe' user.groupe]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment