mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-24 13:40:57 +03:00
16 lines
878 B
HTML
16 lines
878 B
HTML
<div>
|
|
<mat-grid-list [rowHeight]="50" [cols]="24">
|
|
<mat-grid-tile [colspan]="2">
|
|
<h5 style="display: inline-block; margin-right: 5px; position: relative; top: 5px;">{{queueNumber}}.</h5>
|
|
</mat-grid-tile>
|
|
<mat-grid-tile [colspan]="6">
|
|
<div style="display: inline-block; text-align: center;">ID: {{url_id}}</div>
|
|
</mat-grid-tile>
|
|
<mat-grid-tile [colspan]="13">
|
|
<mat-progress-bar style="width: 80%" [value]="download.percent_complete" [mode]="(download.percent_complete === 0) ? 'indeterminate' : 'determinate'"></mat-progress-bar>
|
|
</mat-grid-tile>
|
|
<mat-grid-tile [colspan]="3">
|
|
<button (click)="cancelTheDownload()" mat-icon-button color="warn"><mat-icon fontSet="material-icons-outlined">cancel</mat-icon></button>
|
|
</mat-grid-tile>
|
|
</mat-grid-list>
|
|
</div> |