blob: e870679e8b70cd6a280ecc6bb49f26f1630e1048 [file] [log] [blame]
Matteo Scandolo500e4c42017-08-08 13:05:24 -07001
2<!--
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17
18
Matteo Scandolo5053cbe2017-01-31 17:37:56 -080019<div class="row">
20 <div class="col-xs-12">
21 <h3>Active Key Bindings</h3>
22 </div>
23</div>
24<div class="row" ng-repeat="(k, v) in vm.bindings">
25 <div class="col-xs-12" ng-if="v.length > 0">
Matteo Scandoloc3804aa2017-08-09 16:00:43 -070026 <table class="table table-condensed">
27 <thead>
28 <tr>
29 <th>{{k | capitalize}}:</th>
30 </tr>
31 </thead>
32 <tbody>
33 <tr ng-repeat="binding in v" ng-if="binding.description">
34 <td>
35 <code class="text-center">
36 <span ng-repeat="m in binding.modifiers">
37 {{m}} +
38 </span>
39 {{binding.label.toLowerCase() || binding.key.toLowerCase()}}
40 </code>
41 </td>
42 <td class="text-right">
43 <p>{{binding.description}}</p>
44 </td>
45 </tr>
46 </tbody>
47 </table>
Matteo Scandolo5053cbe2017-01-31 17:37:56 -080048 </div>
Matteo Scandoloc3804aa2017-08-09 16:00:43 -070049</div>
50<div class="row">
51 <div class="col-xs-12">
Matteo Scandoloc8a58c82017-08-17 17:14:38 -070052 <xos-debug-summary></xos-debug-summary>
Matteo Scandolo5053cbe2017-01-31 17:37:56 -080053 </div>
Matteo Scandolo57aee472018-06-28 15:24:42 -070054</div>
55<div class="row">
56 <div class="col-xs-12 text-right ">
57 <span class="text-accent small">
58 XOS-GUI version: {{vm.version}}
59 </span>
60 </div>
Matteo Scandolo5053cbe2017-01-31 17:37:56 -080061</div>