blob: 4c04bfc4a2a060fe34f1330fbc852a8966936b74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(ns cashflow.frontend.navigation)
(defn gen [current-page]
[:nav {:class "tabbed"}
[:a {:class (when (= current-page :one-time) "active")
:_ "on click go to url /transactions/one-time/"}
[:i "attach_money"]
[:span "einmalige"]]
[:a {:class (when (= current-page :recurring) "active")
:_ "on click go to url /transactions/recurring/"}
[:i "calendar_month"]
[:span "wiederkehrende"]]])
|