Sha256: b16838336dce9cc89036c8d8bd0f3da87169dfb00112d9fb889a9506ee4e714f
Contents?: true
Size: 1.15 KB
Versions: 24
Compression:
Stored size: 1.15 KB
Contents
<script type="text/ng-template" id="promethee/components/table/localize"> <hr> <div class="row"> <div class="col-md-6"> <table class="table"> <thead> <tr> <th ng-repeat="th in master.attributes.head track by $index">{{th.searchable_text}}</th> </tr> </thead> <tbody> <tr ng-repeat="tr in master.attributes.body track by $index"> <td ng-repeat="td in tr track by $index">{{td.searchable_text}}</td> </tr> </tbody> </table> </div> <div class="col-md-6"> <table class="table"> <thead> <tr> <th ng-repeat="th in component.attributes.head track by $index"> <input class="form-control" ng-model="th.searchable_text" type="text"> </th> </tr> </thead> <tbody> <tr ng-repeat="tr in component.attributes.body track by $index"> <td ng-repeat="td in tr track by $index"> <input class="form-control" ng-model="td.searchable_text" type="text"> </td> </tr> </tbody> </table> </div> </div> </script>
Version data entries
24 entries across 24 versions & 1 rubygems