]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 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
1 <my-actor-avatar-info [actor]="user.account" (avatarChange)="onAvatarChange($event)"></my-actor-avatar-info>
2
3 <div class="user-quota">
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>
13 </div>
14
15 <div i18n class="account-title">Profile</div>
16 <my-account-profile [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-profile>
17
18 <div i18n class="account-title">Video settings</div>
19 <my-account-video-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-video-settings>
20
21 <div i18n class="account-title">Notifications</div>
22 <my-account-notification-preferences [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-notification-preferences>
23
24 <div i18n class="account-title">Interface</div>
25 <my-account-interface-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-interface-settings>
26
27 <div i18n class="account-title">Password</div>
28 <my-account-change-password></my-account-change-password>
29
30 <div i18n class="account-title">Email</div>
31 <my-account-change-email></my-account-change-email>
32
33 <div i18n class="account-title">Danger zone</div>
34 <my-account-danger-zone [user]="user"></my-account-danger-zone>