Sha256: 5facbcaaeb09a65ffbe21c7684c33ddc80e46e5197b79385b058dc46e6a19a6e
Contents?: true
Size: 1.05 KB
Versions: 6
Compression:
Stored size: 1.05 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">{{th.searchable_text}}</th> </tr> </thead> <tbody> <tr ng-repeat="tr in master.attributes.body"> <td ng-repeat="td in tr">{{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"> <input class="form-control" ng-model="th.searchable_text" type="text"> </th> </tr> </thead> <tbody> <tr ng-repeat="tr in component.attributes.body"> <td ng-repeat="td in tr"> <input class="form-control" ng-model="td.searchable_text" type="text"> </td> </tr> </tbody> </table> </div> </div> </script>
Version data entries
6 entries across 6 versions & 1 rubygems