Skip to content
Snippets Groups Projects
Verified Commit 0578d18c authored by Georg Krause's avatar Georg Krause
Browse files

Fix statistics view

parent 58df0d45
Branches
No related tags found
No related merge requests found
...@@ -68,19 +68,21 @@ ...@@ -68,19 +68,21 @@
<template v-if="stats"> <template v-if="stats">
<div class="statistics-container ui doubling grid"> <div class="statistics-container ui doubling grid">
<div class="ui six wide column"> <div class="two column row">
<span class="statistics-figure ui text"> <div class="column">
<span class="ui big text"><strong>{{ stats.users.toLocaleString($store.state.ui.momentLocale) }}</strong></span> <span class="statistics-figure ui text">
<br /> <span class="ui big text"><strong>{{ stats.users.toLocaleString($store.state.ui.momentLocale) }}</strong></span>
<translate translate-context="Content/About/*" :translate-n="stats.users" translate-plural="active users">active user</translate> <br />
</span> <translate translate-context="Content/About/*" :translate-n="stats.users" translate-plural="active users">active user</translate>
</div> </span>
<div class="ui six wide column"> </div>
<span class="statistics-figure ui text"> <div class="column">
<span class="ui big text"><strong>{{ parseInt(stats.hours).toLocaleString($store.state.ui.momentLocale) }}</strong></span> <span class="statistics-figure ui text">
<br /> <span class="ui big text"><strong>{{ parseInt(stats.hours).toLocaleString($store.state.ui.momentLocale) }}</strong></span>
<translate translate-context="Content/About/*" :translate-n="parseInt(stats.hours)" translate-plural="hours of music">hour of music</translate> <br />
</span> <translate translate-context="Content/About/*" :translate-n="parseInt(stats.hours)" translate-plural="hours of music">hour of music</translate>
</span>
</div>
</div> </div>
</div> </div>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment