1
0
Fork 0
peertube/client/src/app/shared/video/abstract-video-list.html

29 lines
1018 B
HTML
Raw Normal View History

2018-04-24 13:10:54 +00:00
<div [ngClass]="{ 'margin-content': marginContent }">
<div class="videos-header">
<div *ngIf="titlePage" class="title-page title-page-single">
<div placement="bottom" [ngbTooltip]="titleTooltip" container="body">
{{ titlePage }}
</div>
</div>
2018-10-18 12:35:31 +00:00
<my-feed [syndicationItems]="syndicationItems"></my-feed>
<div class="moderation-block" *ngIf="displayModerationBlock">
<my-peertube-checkbox
(change)="toggleModerationDisplay()"
inputName="display-unlisted-private" i18n-labelText labelText="Display unlisted and private videos"
>
</my-peertube-checkbox>
</div>
2017-12-01 16:38:26 +00:00
</div>
2016-05-23 09:07:42 +00:00
2018-08-30 12:58:00 +00:00
<div class="no-results" i18n *ngIf="pagination.totalItems === 0">No results.</div>
2017-12-01 16:38:26 +00:00
<div
2019-03-21 15:49:46 +00:00
myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true"
class="videos"
2016-07-18 13:39:10 +00:00
>
2019-03-21 15:49:46 +00:00
<my-video-miniature *ngFor="let video of videos; trackBy: videoById" [video]="video" [user]="user" [ownerDisplayType]="ownerDisplayType">
</my-video-miniature>
2017-12-01 16:38:26 +00:00
</div>
2016-05-22 08:43:06 +00:00
</div>