]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-history/my-account-history.component.html
Add history page on client
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-history / my-account-history.component.html
CommitLineData
80bfd33c
C
1<div i18n *ngIf="pagination.totalItems === 0">You don't have history yet.</div>
2
3<div myInfiniteScroller (nearOfBottom)="onNearOfBottom()" class="videos" #videosElement>
4 <div *ngFor="let videos of videoPages;" class="videos-page">
5 <div class="video" *ngFor="let video of videos">
6 <my-video-thumbnail [video]="video"></my-video-thumbnail>
7
8 <div class="video-info">
9 <a tabindex="-1" class="video-info-name" [routerLink]="['/videos/watch', video.uuid]" [attr.title]="video.name">{{ video.name }}</a>
10 <span i18n class="video-info-date-views">{{ video.views | myNumberFormatter }} views</span>
11 <a tabindex="-1" class="video-info-account" [routerLink]="[ '/accounts', video.byAccount ]">{{ video.byAccount }}</a>
12 </div>
13 </div>
14 </div>
15</div>