This commit is contained in:
2022-08-26 20:40:44 +00:00
parent 3c555a2aea
commit 983b39c26a

View File

@@ -97,6 +97,50 @@
}}</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
<v-divider></v-divider>
<v-subheader>{{ $ay.t("Server") }}</v-subheader>
<v-list-item>
<v-list-item-content>
<v-list-item-title>{{
$ay.t("Version")
}}</v-list-item-title>
<v-list-item-subtitle class="text-wrap"
>{{ currentLicenseInfo.serverVersion }}&nbsp;{{
currentLicenseInfo.build
}}</v-list-item-subtitle
>
</v-list-item-content>
</v-list-item>
<v-list-item>
<v-list-item-content>
<v-list-item-title>{{
$ay.t("ActiveTechUserCount")
}}</v-list-item-title>
<v-list-item-subtitle class="text-wrap">{{
currentLicenseInfo.activeTechUserCount
}}</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
<v-list-item>
<v-list-item-content>
<v-list-item-title>{{
$ay.t("ActiveInternalUserCount")
}}</v-list-item-title>
<v-list-item-subtitle class="text-wrap">{{
currentLicenseInfo.activeInternalUserCount
}}</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
<v-list-item>
<v-list-item-content>
<v-list-item-title>{{
$ay.t("ActiveCustomerContactUserCount")
}}</v-list-item-title>
<v-list-item-subtitle class="text-wrap">{{
currentLicenseInfo.activeCustomerContactUserCount
}}</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
</v-list>
</v-card>
</v-col>
@@ -657,7 +701,12 @@ async function fetchTranslatedText() {
"ViewEULA",
"LicenseType",
"LicenseTypeSubscription",
"LicenseTypePerpetual"
"LicenseTypePerpetual",
"Server",
"Version",
"ActiveCustomerContactUserCount",
"ActiveInternalUserCount",
"ActiveTechUserCount"
]);
}
</script>