Mercurial > hg > ugly-duckling
annotate src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 424:bb2bc6af642b
Update lock
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 06 Jun 2017 21:36:48 +0100 |
parents | 4387175f594b |
children | 686cf74aa0a2 |
rev | line source |
---|---|
dev@100 | 1 <div class="container"> |
dev@423 | 2 <md-list dense> |
dev@423 | 3 <ng-container |
dev@100 | 4 *ngFor="let extractor of extractors" |
dev@100 | 5 > |
dev@423 | 6 <h3 md-subheader>{{extractor.name}}</h3> |
dev@423 | 7 <md-list-item *ngFor="let output of extractor.outputs"> |
dev@423 | 8 <md-icon md-list-icon>extension</md-icon> |
dev@423 | 9 <h4 md-line>{{output.name}}</h4> |
dev@423 | 10 <p md-line>{{output.combinedKey}}</p> |
dev@423 | 11 <button md-icon-button (click)="extract(output)" [disabled]="disabled"> |
dev@423 | 12 <md-icon>add</md-icon> |
dev@423 | 13 </button> |
dev@423 | 14 </md-list-item> |
dev@423 | 15 <md-divider></md-divider> |
dev@423 | 16 </ng-container> |
dev@423 | 17 </md-list> |
dev@100 | 18 </div> |