aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/video-redundancies-list/video-redundancy-information.component.html
blob: a379520e3270515bf4d00a9881a2122b8aaf844c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div>
  <span class="label">Url</span>
  <a target="_blank" rel="noopener noreferrer" [href]="redundancyElement.fileUrl">{{ redundancyElement.fileUrl }}</a>
</div>

<div>
  <span class="label">Created on</span>
  <span>{{ redundancyElement.createdAt | date: 'medium' }}</span>
</div>

<div>
  <span class="label">Expires on</span>
  <span>{{ redundancyElement.expiresOn | date: 'medium' }}</span>
</div>

<div>
  <span class="label">Size</span>
  <span>{{ redundancyElement.size | bytes: 1 }}</span>
</div>

<div *ngIf="redundancyElement.strategy">
  <span class="label">Strategy</span>
  <span>{{ redundancyElement.strategy }}</span>
</div>