diff options
Diffstat (limited to 'src/client/View')
-rw-r--r-- | src/client/View/Page.elm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/View/Page.elm b/src/client/View/Page.elm index ca8efc9..73afed9 100644 --- a/src/client/View/Page.elm +++ b/src/client/View/Page.elm @@ -27,10 +27,10 @@ renderPage model = [] ([ tr [] - [ td [] [ text "Utilisateur" ] - , td [] [ text "Nom" ] - , td [] [ text "Prix" ] - , td [] [ text "Date" ] + [ th [] [ text "Utilisateur" ] + , th [] [ text "Nom" ] + , th [] [ text "Prix" ] + , th [] [ text "Date" ] ] ] ++ (List.map renderPayment model.payments)) ] |