duck1123/jiksnu

View on GitHub
resources/templates/user-links-table.edn

Summary

Maintainability
Test Coverage
[:div {:ng-show "user.links"}
 [:h3 "Links"]
 [:table.table
  [:thead
   [:tr
    [:th "title"]
    [:th "rel"]
    [:th "href"]
    [:th "Actions"]]]
  [:tbody
   [:tr {:ng-repeat "link in links"}
    [:td "{{link.title}}"]
    [:td "{{link.rel}}"]
    [:td "{{link.href}}"]
    [:td
     [:ul.buttons
      [:li "delete"]]]]]]]