Split the modularity patch into smaller pieces. Add the connection manager module.
[dlux.git] / src / app / connection_manager / index.tpl.html
1 <!--<ctrl-reload service="svc"></ctrl-reload>
2 <show-selected data="gridOptions.selectedItems"></show-selected>
3 <div class="indexGrid" ng-grid="gridOptions"></div>-->
4
5
6
7 <table class="footable table">
8         <thead>
9                 <tr>
10                         <th>ID</th>
11                         <th data-hide="phone">Type</th>
12                 </tr>
13         </thead>
14         <tbody>
15                 <tr ng-repeat="item in data | filter:search">
16         <td>{{item.id}}</td>
17         <td>{{item.type}}</td>
18       </tr>
19         </tbody>
20 </table>
21
22
23 <script type="text/javascript">
24         $('.footable').footable();
25 </script>