mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-22 13:40:40 +08:00
9 lines
363 B
Plaintext
9 lines
363 B
Plaintext
table
|
|
tr
|
|
th Active
|
|
th(ng-repeat="(attribute, value) in poems[0].meta" ng-if="attribute != 'Active'" ng-bind-html="attribute")
|
|
tr(ng-repeat="poem in poems" ng-class="{disabled: !poem.meta.Active}")
|
|
td
|
|
input(type="checkbox" ng-model="poem.meta.Active")
|
|
td(ng-repeat="(attribute, value) in poem.meta" ng-if="attribute != 'Active'" ng-bind-html="value")
|