]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/account/account-videos/account-videos.component.html
Better error messages
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account-videos / account-videos.component.html
CommitLineData
202f6b6c
C
1<div
2 infiniteScroll
3 [infiniteScrollDistance]="0.5"
a2b817d3 4 [infiniteScrollUpDistance]="1.5"
202f6b6c 5 (scrolled)="onNearOfBottom()"
a2b817d3 6 (scrolledUp)="onNearOfTop()"
202f6b6c 7>
d2cc03aa 8 <div class="video" *ngFor="let video of videos">
202f6b6c 9 <my-video-thumbnail [video]="video"></my-video-thumbnail>
d2cc03aa
C
10
11 <div class="video-info">
12 <div class="video-info-name">{{ video.name }}</div>
be447678 13 <span class="video-info-date-views">{{ video.createdAt | myFromNow }} - {{ video.views | myNumberFormatter }} views</span>
d2cc03aa
C
14 </div>
15
16 <a class="edit-button" [routerLink]="[ '/videos', video.id, '/edit' ]">
17 <span class="icon icon-edit"></span>
18 Edit
19 </a>
202f6b6c
C
20 </div>
21</div>