Merge branch 'release/v1.3.0' into develop
[oweals/peertube.git] / client / src / app / +my-account / my-account-history / my-account-history.component.html
1 <div class="top-buttons">
2   <div class="history-switch">
3     <p-inputSwitch [(ngModel)]="videosHistoryEnabled" (ngModelChange)="onVideosHistoryChange()"></p-inputSwitch>
4     <label i18n>History enabled</label>
5   </div>
6
7   <button class="delete-history" (click)="deleteHistory()" i18n>
8     <my-global-icon iconName="delete"></my-global-icon>
9     Delete history
10   </button>
11 </div>
12
13
14 <div class="no-history" i18n *ngIf="pagination.totalItems === 0">You don't have videos history yet.</div>
15
16 <div myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true" class="videos">
17   <div class="video" *ngFor="let video of videos">
18     <my-video-miniature
19       [video]="video" [displayAsRow]="true"
20       (videoRemoved)="removeVideoFromArray(video)" (videoBlacklisted)="removeVideoFromArray(video)"></my-video-miniature>
21   </div>
22 </div>