mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-18 02:30:55 +03:00
25 lines
831 B
HTML
25 lines
831 B
HTML
<h4 mat-dialog-title>{{sub.name}}</h4>
|
|
|
|
<mat-dialog-content>
|
|
<div class="info-item">
|
|
<strong>Type: </strong>
|
|
<span class="info-item-value">{{(sub.isPlaylist ? 'Playlist' : 'Channel')}}</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<strong>URL: </strong>
|
|
<span class="info-item-value">{{sub.url}}</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<strong>ID: </strong>
|
|
<span class="info-item-value">{{sub.id}}</span>
|
|
</div>
|
|
<div class="info-item" *ngIf="sub.archive">
|
|
<strong>Archive: </strong>
|
|
<span class="info-item-value">{{sub.archive}}</span>
|
|
</div>
|
|
</mat-dialog-content>
|
|
|
|
<mat-dialog-actions>
|
|
<button mat-button mat-dialog-close>Close</button>
|
|
<button mat-button (click)="unsubscribe()" color="warn">Unsubscribe</button>
|
|
</mat-dialog-actions> |