|
41 | 41 | <mat-tab-group mat-align-tabs="center" color="accent"> |
42 | 42 | <mat-tab label="Repositories"> |
43 | 43 | <mat-card> |
44 | | - <mat-card-title>Filter Repositories nach:</mat-card-title> |
45 | | - <mat-card-content style="background-color:white; height: 100px;"> |
| 44 | + <mat-card-title>Sortiere Projekte nach:<mat-icon matTooltip="Bitte wählen Sie mindestens eine Kategorie und ein Sortierkriterium" style=" padding-left: 10px;" color="primary"> |
| 45 | + info |
| 46 | + </mat-icon></mat-card-title> |
| 47 | + <div style="font-size: large;">Kategorie:</div> |
| 48 | + <mat-card-content style="background-color:white; height: 100px; padding-left: 3%;"> |
46 | 49 | <mat-chip-list selectable multiple [formControl]="chipsControl"> |
47 | 50 | <mat-chip #chip="matChip" (click)="chip.toggleSelected(true)" *ngFor="let option of getChipOptions()" [value]="option"> |
48 | 51 | <mat-icon *ngIf="chip.selected" color="accent">check</mat-icon> |
49 | 52 | {{option}} |
50 | 53 | </mat-chip> |
51 | 54 | </mat-chip-list> |
52 | 55 | <br /> |
53 | | - <div>Value: {{chipsValue$ | async}}</div> |
| 56 | + <!-- <div>Wert: {{chipsValue$ | async}}</div> --> |
54 | 57 | </mat-card-content> |
55 | 58 |
|
56 | | - <mat-card-content style="background-color:white; height: 100px;"> |
| 59 | + <div style="font-size: large;">Sortierkriterium:</div> |
| 60 | + <mat-card-content style="background-color:white; height: 100px; padding-left: 3%;"> |
57 | 61 | <mat-radio-group |
58 | 62 | aria-labelledby="example-radio-group-label" |
59 | 63 | class="example-radio-group" |
|
65 | 69 | </mat-card-content> |
66 | 70 | <!-- kategorie.value == bestandene_tests_pro_kategorie--> |
67 | 71 | <button mat-raised-button [disabled]=" chipsControl.value.length == 0 || searchCriteria.value.length == 0 " |
68 | | - (click)="sortProjects()" >Filter</button> |
| 72 | + (click)="sortProjects()">Sortieren</button> |
69 | 73 | <mat-icon matTooltip="{{filterInfo}}" style=" padding-left: 10px;" color="primary"> |
70 | 74 | info |
71 | 75 | </mat-icon> |
|
113 | 117 | <mat-tab label="Statistiken"> |
114 | 118 | <mat-card-content |
115 | 119 | style="background-color: white; height: 10%; padding-top: 3%; padding-left: 2%; font-size: large; padding-bottom: 2%; border-bottom: 2px solid lightgray"> |
116 | | - Datenbank als CSV exportieren: <a download href={{csvExportLink}}>download</a> |
| 120 | + Ergebnisse des Crawlers als .csv exportieren: <a mat-raised-button download href={{csvExportLink}} color="primary">Download</a> |
117 | 121 | </mat-card-content> |
118 | 122 |
|
119 | 123 | <!----Footer of statistics--> |
|
0 commit comments