|
|
|
@ -38,7 +38,7 @@
|
|
|
|
|
[:li.global-nav__card-nav-item
|
|
|
|
|
[:a.global-nav__link {:href (path :public-coc {:coc "req"})}
|
|
|
|
|
"Req. Eng."]]]]
|
|
|
|
|
(into [:main.main] content)]]))
|
|
|
|
|
(into [:div.content] content)]]))
|
|
|
|
|
|
|
|
|
|
(defn index []
|
|
|
|
|
(layout
|
|
|
|
@ -52,7 +52,8 @@
|
|
|
|
|
|
|
|
|
|
(defn show-coc [coc roles]
|
|
|
|
|
(layout
|
|
|
|
|
[[:h1 "CoC " coc]
|
|
|
|
|
[[:main.main
|
|
|
|
|
[:h1 "CoC " (h (:name coc))]
|
|
|
|
|
[:table.table
|
|
|
|
|
[:thead
|
|
|
|
|
[:tr
|
|
|
|
@ -60,4 +61,7 @@
|
|
|
|
|
[:tbody
|
|
|
|
|
(for [role roles]
|
|
|
|
|
[:tr
|
|
|
|
|
[:td (h (:name role))]])]]]))
|
|
|
|
|
[:td (h (:name role))]])]]]
|
|
|
|
|
[:nav
|
|
|
|
|
[:ol.breadcrumb
|
|
|
|
|
[:li.breadcrumb-item.active (h (:name coc))]]]]))
|
|
|
|
|