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>
9 <div class="dataTables_wrapper">
10 <div class="dataTables_header clearfix form-inline">
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>
24 <table class="oadatatable table table-striped table-condensed table-bordered table-hover">
25 <thead class="datatable-header">
28 <th style="width:400px;">Description</th>
31 <th style="width: 200px">Default</th>
40 <tr *ngFor="let row of data | filter:filters">
41 <td >{{ row.name }}</td>
45 <p *ngIf="row.long_desc"
46 class=text-muted>{{ row.long_desc }}</p>
48 <td>{{ row.type }}</td>
49 <td>{{ row.level }}</td>
51 {{ row.default }} {{ row.daemon_default }}
54 <p *ngFor="let item of row.tags">{{ item }}</p>
57 <p *ngFor="let item of row.services">{{ item }}</p>
60 <p *ngFor="let item of row.see_also">{{ item }}</p>
62 <td>{{ row.max }}</td>
63 <td>{{ row.min }}</td>