This commit is contained in:
parent
2beedc5978
commit
2cbd35acc4
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="obdskegsannmntldydackcpzezagxqfy">
|
<div class="obdskegsannmntldydackcpzezagxqfy card">
|
||||||
<header>%i18n:@dashboard%</header>
|
<header>%i18n:@dashboard%</header>
|
||||||
<div v-if="stats" class="stats">
|
<div v-if="stats" class="stats">
|
||||||
<div><b>%fa:user% {{ stats.originalUsersCount | number }}</b><span>%i18n:@original-users%</span></div>
|
<div><b>%fa:user% {{ stats.originalUsersCount | number }}</b><span>%i18n:@original-users%</span></div>
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="card">
|
||||||
<header>%i18n:@title%</header>
|
<header>%i18n:@title%</header>
|
||||||
<x-chart v-if="data" :data="data" type="local"/>
|
<div class="card">
|
||||||
<x-chart v-if="data" :data="data" type="remote"/>
|
<header>%i18n:@local%</header>
|
||||||
|
<x-chart v-if="data" :data="data" type="local"/>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<header>%i18n:@remote%</header>
|
||||||
|
<x-chart v-if="data" :data="data" type="remote"/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="card">
|
||||||
<header>%i18n:@suspend-user%</header>
|
<header>%i18n:@suspend-user%</header>
|
||||||
<input v-model="username" type="text" class="ui"/>
|
<input v-model="username" type="text" class="ui"/>
|
||||||
<button class="ui" @click="suspendUser" :disabled="suspending">%i18n:@suspend%</button>
|
<button class="ui" @click="suspendUser" :disabled="suspending">%i18n:@suspend%</button>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="card">
|
||||||
<header>%i18n:@unsuspend-user%</header>
|
<header>%i18n:@unsuspend-user%</header>
|
||||||
<input v-model="username" type="text" class="ui"/>
|
<input v-model="username" type="text" class="ui"/>
|
||||||
<button class="ui" @click="unsuspendUser" :disabled="unsuspending">%i18n:@unsuspend%</button>
|
<button class="ui" @click="unsuspendUser" :disabled="unsuspending">%i18n:@unsuspend%</button>
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="card">
|
||||||
<header>%i18n:@title%</header>
|
<header>%i18n:@title%</header>
|
||||||
<x-chart v-if="data" :data="data" type="local"/>
|
<div class="card">
|
||||||
<x-chart v-if="data" :data="data" type="remote"/>
|
<header>%i18n:@local%</header>
|
||||||
|
<x-chart v-if="data" :data="data" type="local"/>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<header>%i18n:@remote%</header>
|
||||||
|
<x-chart v-if="data" :data="data" type="remote"/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="card">
|
||||||
<header>%i18n:@verify-user%</header>
|
<header>%i18n:@verify-user%</header>
|
||||||
<input v-model="username" type="text" class="ui"/>
|
<input v-model="username" type="text" class="ui"/>
|
||||||
<button class="ui" @click="verifyUser" :disabled="verifying">%i18n:@verify%</button>
|
<button class="ui" @click="verifyUser" :disabled="verifying">%i18n:@verify%</button>
|
||||||
|
|
|
@ -101,17 +101,21 @@ export default Vue.extend({
|
||||||
|
|
||||||
> div
|
> div
|
||||||
> div
|
> div
|
||||||
margin-bottom 16px
|
|
||||||
padding 32px
|
|
||||||
max-width 800px
|
max-width 800px
|
||||||
background #fff
|
|
||||||
box-shadow 0 2px 8px rgba(#000, 0.1)
|
|
||||||
|
|
||||||
> header
|
.card
|
||||||
margin 0 0 1em 0
|
padding 32px
|
||||||
padding 0 0 8px 0
|
background #fff
|
||||||
font-size 1em
|
box-shadow 0 2px 8px rgba(#000, 0.1)
|
||||||
color #555
|
|
||||||
border-bottom solid 1px #eee
|
&:not(:last-child)
|
||||||
|
margin-bottom 16px
|
||||||
|
|
||||||
|
> header
|
||||||
|
margin 0 0 1em 0
|
||||||
|
padding 0 0 8px 0
|
||||||
|
font-size 1em
|
||||||
|
color #555
|
||||||
|
border-bottom solid 1px #eee
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue