]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-settings/my-account-settings.component.html
Better spacing beetween comments
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-settings.component.html
CommitLineData
52d9f792 1<my-actor-avatar-info [actor]="user.account" (avatarChange)="onAvatarChange($event)"></my-actor-avatar-info>
2295ce6c 2
ce5496d6 3<div class="user-quota">
66fd1516
C
4 <div>
5 <span i18n class="user-quota-label">Total video quota:</span>
6 <ng-container i18n>{{ userVideoQuotaUsed | bytes: 0 }} used</ng-container> / {{ userVideoQuota }}
7 </div>
8
9 <div *ngIf="hasDailyQuota()">
10 <span i18n class="user-quota-label">Daily video quota:</span>
11 <ng-container>{{ userVideoQuotaUsedDaily | bytes: 0 }} used</ng-container> / {{ userVideoQuotaDaily }}
12 </div>
ce5496d6
C
13</div>
14
07a98236
C
15<div i18n class="account-title">Profile</div>
16<my-account-profile [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-profile>
ed56ad11 17
3caf77d3
C
18<div i18n class="account-title">Video settings</div>
19<my-account-video-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-video-settings>
20
7cd4d2ba 21<div i18n class="account-title">Notifications</div>
2f1548fd
C
22<my-account-notification-preferences [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-notification-preferences>
23
7cd4d2ba
C
24<div i18n class="account-title">Interface</div>
25<my-account-interface-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-interface-settings>
26
b1d40cff 27<div i18n class="account-title">Password</div>
c30745f3
C
28<my-account-change-password></my-account-change-password>
29
0ba5f5ba
C
30<div i18n class="account-title">Email</div>
31<my-account-change-email></my-account-change-email>
32
92b9d60c 33<div i18n class="account-title">Danger zone</div>
2f1548fd 34<my-account-danger-zone [user]="user"></my-account-danger-zone>