aboutsummaryrefslogtreecommitdiff
path: root/src/client/View/Page.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-07-18 15:19:48 +0200
committerJoris Guyonvarch2015-07-18 15:19:48 +0200
commit89dd4de13896f8e37d1bf133080eb881ab42b292 (patch)
treef7d8cc5f412355524ef5b3f128aa09fce89c0afa /src/client/View/Page.elm
parent0041c546869f0a7fd59a085cc75b481237b6c380 (diff)
downloadbudget-89dd4de13896f8e37d1bf133080eb881ab42b292.tar.gz
budget-89dd4de13896f8e37d1bf133080eb881ab42b292.tar.bz2
budget-89dd4de13896f8e37d1bf133080eb881ab42b292.zip
Adding login/logout functions thanks to a client session
Diffstat (limited to 'src/client/View/Page.elm')
-rw-r--r--src/client/View/Page.elm8
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))
]