diff options
author | Chocobozzz <me@florianbigard.com> | 2019-12-04 13:19:55 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-12-04 13:20:02 +0100 |
commit | 66fd15160e633d98fd7933ffe4abb6c55fcd1755 (patch) | |
tree | 43215742a9404a39039b18cca7debdac3a933a71 /client/src/app/+my-account/my-account-settings/my-account-settings.component.html | |
parent | c883db6d038a8510205f5f13ef46fb5a1c9e8288 (diff) | |
download | PeerTube-66fd15160e633d98fd7933ffe4abb6c55fcd1755.tar.gz PeerTube-66fd15160e633d98fd7933ffe4abb6c55fcd1755.tar.zst PeerTube-66fd15160e633d98fd7933ffe4abb6c55fcd1755.zip |
Clearer video quota label in user settings
Diffstat (limited to 'client/src/app/+my-account/my-account-settings/my-account-settings.component.html')
-rw-r--r-- | client/src/app/+my-account/my-account-settings/my-account-settings.component.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/client/src/app/+my-account/my-account-settings/my-account-settings.component.html b/client/src/app/+my-account/my-account-settings/my-account-settings.component.html index eb9367d1f..9f187b574 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-settings.component.html +++ b/client/src/app/+my-account/my-account-settings/my-account-settings.component.html | |||
@@ -1,7 +1,15 @@ | |||
1 | <my-actor-avatar-info [actor]="user.account" (avatarChange)="onAvatarChange($event)"></my-actor-avatar-info> | 1 | <my-actor-avatar-info [actor]="user.account" (avatarChange)="onAvatarChange($event)"></my-actor-avatar-info> |
2 | 2 | ||
3 | <div class="user-quota"> | 3 | <div class="user-quota"> |
4 | <span i18n class="user-quota-label">Video quota:</span> {{ userVideoQuotaUsed | bytes: 0 }} / {{ userVideoQuota }} | 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> | ||
5 | </div> | 13 | </div> |
6 | 14 | ||
7 | <div i18n class="account-title">Profile</div> | 15 | <div i18n class="account-title">Profile</div> |