]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-magnet.component.html
Video blacklist refractoring
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-magnet.component.html
CommitLineData
cf02fbfb
C
1<div bsModal #modal="bs-modal" class="modal" tabindex="-1">
2 <div class="modal-dialog">
3 <div class="modal-content modal-lg">
4
5 <div class="modal-header">
c16ce1de 6 <button type="button" class="close" aria-label="Close" (click)="hide()">
cf02fbfb
C
7 <span aria-hidden="true">&times;</span>
8 </button>
9 <h4 class="modal-title">Magnet Uri</h4>
10 </div>
11
12 <div class="modal-body">
aa8b6df4
C
13 <div *ngFor="let file of video.files">
14 <label>{{ file.resolutionLabel }}</label>
15 <input #magnetUriInput (click)="magnetUriInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="file.magnetUri" />
16 </div>
cf02fbfb
C
17 </div>
18 </div>
19 </div>
20</div>