diff options
Diffstat (limited to 'client/src/app/+my-account/my-account-video-imports')
-rw-r--r-- | client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html b/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html index c029aabba..3e07550c1 100644 --- a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html +++ b/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html | |||
@@ -1,7 +1,9 @@ | |||
1 | <h1 class="sr-only" i18n>Imports</h1> | 1 | <h1 class="sr-only" i18n>Imports</h1> |
2 | <p-table | 2 | <p-table |
3 | [value]="videoImports" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" | 3 | [value]="videoImports" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions" |
4 | [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" dataKey="id" | 4 | [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" dataKey="id" |
5 | [showCurrentPageReport]="true" i18n-currentPageReportTemplate | ||
6 | currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} imports" | ||
5 | (onPage)="onPage($event)" [expandedRowKeys]="expandedRows" | 7 | (onPage)="onPage($event)" [expandedRowKeys]="expandedRows" |
6 | > | 8 | > |
7 | <ng-template pTemplate="header"> | 9 | <ng-template pTemplate="header"> |
@@ -11,7 +13,7 @@ | |||
11 | <th style="width: 55%" i18n>Video</th> | 13 | <th style="width: 55%" i18n>Video</th> |
12 | <th style="width: 150px" i18n>State</th> | 14 | <th style="width: 150px" i18n>State</th> |
13 | <th style="width: 150px" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> | 15 | <th style="width: 150px" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> |
14 | <th style="width: 60px"></th> | 16 | <th style="width: 70px"></th> |
15 | </tr> | 17 | </tr> |
16 | </ng-template> | 18 | </ng-template> |
17 | 19 | ||