diff options
author | Chocobozzz <me@florianbigard.com> | 2020-11-12 15:28:54 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-11-13 12:02:21 +0100 |
commit | 17119e4a546522468878cf115558b17949ab50d0 (patch) | |
tree | 3f130cfd7fdccf5aeeac9beee941750590239047 /client/src/app/+my-account/my-account-videos/my-account-videos.component.html | |
parent | b4bc269e5517849b5b89052f0c1a2c01b6f65089 (diff) | |
download | PeerTube-17119e4a546522468878cf115558b17949ab50d0.tar.gz PeerTube-17119e4a546522468878cf115558b17949ab50d0.tar.zst PeerTube-17119e4a546522468878cf115558b17949ab50d0.zip |
Reorganize left menu and account menu
Add my-settings and my-library in left menu
Move administration below my-library
Split account menu: my-setting and my library
Diffstat (limited to 'client/src/app/+my-account/my-account-videos/my-account-videos.component.html')
-rw-r--r-- | client/src/app/+my-account/my-account-videos/my-account-videos.component.html | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html b/client/src/app/+my-account/my-account-videos/my-account-videos.component.html deleted file mode 100644 index aa5b284e7..000000000 --- a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html +++ /dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | <h1> | ||
2 | <span> | ||
3 | <my-global-icon iconName="videos" aria-hidden="true"></my-global-icon> | ||
4 | <ng-container i18n>My videos</ng-container> | ||
5 | <span class="badge badge-secondary"> {{ pagination.totalItems }}</span> | ||
6 | </span> | ||
7 | </h1> | ||
8 | |||
9 | <div class="videos-header d-flex justify-content-between"> | ||
10 | <div class="has-feedback has-clear"> | ||
11 | <input type="text" placeholder="Search your videos" i18n-placeholder [(ngModel)]="videosSearch" | ||
12 | (ngModelChange)="onVideosSearchChanged()" /> | ||
13 | <a class="glyphicon glyphicon-remove-sign form-control-feedback form-control-clear" (click)="resetSearch()"></a> | ||
14 | <span class="sr-only" i18n>Clear filters</span> | ||
15 | </div> | ||
16 | </div> | ||
17 | |||
18 | <my-videos-selection | ||
19 | [pagination]="pagination" | ||
20 | [(selection)]="selection" | ||
21 | [(videosModel)]="videos" | ||
22 | [miniatureDisplayOptions]="miniatureDisplayOptions" | ||
23 | [titlePage]="titlePage" | ||
24 | [getVideosObservableFunction]="getVideosObservableFunction" | ||
25 | [ownerDisplayType]="ownerDisplayType" | ||
26 | #videosSelection | ||
27 | > | ||
28 | <ng-template ptTemplate="globalButtons"> | ||
29 | <span class="action-button action-button-delete-selection" (click)="deleteSelectedVideos()"> | ||
30 | <my-global-icon iconName="delete" aria-hidden="true"></my-global-icon> | ||
31 | <ng-container i18n>Delete</ng-container> | ||
32 | </span> | ||
33 | </ng-template> | ||
34 | |||
35 | <ng-template ptTemplate="rowButtons" let-video> | ||
36 | <div class="action-button"> | ||
37 | <my-edit-button label [routerLink]="[ '/videos', 'update', video.uuid ]"></my-edit-button> | ||
38 | |||
39 | <my-action-dropdown [actions]="videoActions" [entry]="{ video: video }"></my-action-dropdown> | ||
40 | </div> | ||
41 | </ng-template> | ||
42 | </my-videos-selection> | ||
43 | |||
44 | |||
45 | <my-video-change-ownership #videoChangeOwnershipModal></my-video-change-ownership> | ||
46 | <my-live-stream-information #liveStreamInformationModal></my-live-stream-information> | ||