mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Display creation date in user view
This commit is contained in:
parent
f9969b964c
commit
5da5b8658e
@ -196,7 +196,8 @@
|
|||||||
"columns": {
|
"columns": {
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"slug": "Slug",
|
"slug": "Slug",
|
||||||
"role": "Rolle"
|
"role": "Rolle",
|
||||||
|
"createdAt": "Erstellt am"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"empty": "Keine Benutzer gefunden"
|
"empty": "Keine Benutzer gefunden"
|
||||||
|
|||||||
@ -197,7 +197,8 @@
|
|||||||
"columns": {
|
"columns": {
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"slug": "Slug",
|
"slug": "Slug",
|
||||||
"role": "Role"
|
"role": "Role",
|
||||||
|
"createdAt": "Created at"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"empty": "No users found"
|
"empty": "No users found"
|
||||||
|
|||||||
@ -43,6 +43,9 @@
|
|||||||
<b>{{ scope.row.slug | truncate(20) }}</b>
|
<b>{{ scope.row.slug | truncate(20) }}</b>
|
||||||
</nuxt-link>
|
</nuxt-link>
|
||||||
</template>
|
</template>
|
||||||
|
<template slot="createdAt" slot-scope="scope">
|
||||||
|
{{ scope.row.createdAt | dateTime }}
|
||||||
|
</template>
|
||||||
</ds-table>
|
</ds-table>
|
||||||
<ds-flex direction="row-reverse">
|
<ds-flex direction="row-reverse">
|
||||||
<ds-flex-item width="50px">
|
<ds-flex-item width="50px">
|
||||||
@ -92,6 +95,7 @@ export default {
|
|||||||
index: '#',
|
index: '#',
|
||||||
name: this.$t('admin.users.table.columns.name'),
|
name: this.$t('admin.users.table.columns.name'),
|
||||||
slug: this.$t('admin.users.table.columns.slug'),
|
slug: this.$t('admin.users.table.columns.slug'),
|
||||||
|
createdAt: this.$t('admin.users.table.columns.createdAt'),
|
||||||
contributionsCount: {
|
contributionsCount: {
|
||||||
label: '🖉',
|
label: '🖉',
|
||||||
align: 'right',
|
align: 'right',
|
||||||
@ -121,6 +125,7 @@ export default {
|
|||||||
name
|
name
|
||||||
slug
|
slug
|
||||||
role
|
role
|
||||||
|
createdAt
|
||||||
contributionsCount
|
contributionsCount
|
||||||
commentedCount
|
commentedCount
|
||||||
shoutedCount
|
shoutedCount
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user