]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
efe071a02278d9b2b1d92f12378235f0e028f839
[ceph.git] /
1 <nav aria-label="breadcrumb">
2   <ol class="breadcrumb">
3     <li class="breadcrumb-item">Cluster</li>
4     <li class="breadcrumb-item active"
5         aria-current="page">Configuration Documentation</li>
6   </ol>
7 </nav>
8
9 <div class="dataTables_wrapper">
10   <div class="dataTables_header clearfix form-inline">
11     <!-- filters -->
12     <div class="form-group pull-right filter"
13          *ngFor="let filter of filters">
14       <label>{{ filter.label }}: </label>
15       <select class="form-control input-sm"
16               [(ngModel)]="filter.value"
17               (ngModelChange)="updateFilter()">
18         <option *ngFor="let opt of filter.options">{{ opt }}</option>
19       </select>
20     </div>
21     <!-- end filters -->
22   </div>
23
24   <table class="oadatatable table table-striped table-condensed table-bordered table-hover">
25     <thead class="datatable-header">
26       <tr>
27         <th >Name</th>
28         <th style="width:400px;">Description</th>
29         <th>Type</th>
30         <th>Level</th>
31         <th style="width: 200px">Default</th>
32         <th>Tags</th>
33         <th>Services</th>
34         <th>See_also</th>
35         <th>Max</th>
36         <th>Min</th>
37       </tr>
38     </thead>
39     <tbody>
40       <tr *ngFor="let row of data | filter:filters">
41         <td >{{ row.name }}</td>
42         <td>
43           <p>
44             {{ row.desc }}</p>
45           <p *ngIf="row.long_desc"
46              class=text-muted>{{ row.long_desc }}</p>
47         </td>
48         <td>{{ row.type }}</td>
49         <td>{{ row.level }}</td>
50         <td class="wrap">
51           {{ row.default }} {{ row.daemon_default }}
52         </td>
53         <td>
54           <p *ngFor="let item of row.tags">{{ item }}</p>
55         </td>
56         <td>
57           <p *ngFor="let item of row.services">{{ item }}</p>
58         </td>
59         <td class="wrap">
60           <p *ngFor="let item of row.see_also">{{ item }}</p>
61         </td>
62         <td>{{ row.max }}</td>
63         <td>{{ row.min }}</td>
64       </tr>
65     </tbody>
66   </table>
67 </div>